diff options
Diffstat (limited to 'debian/patches/lp1153725-temporary-workaround.patch')
-rw-r--r-- | debian/patches/lp1153725-temporary-workaround.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/patches/lp1153725-temporary-workaround.patch b/debian/patches/lp1153725-temporary-workaround.patch new file mode 100644 index 0000000..8332058 --- /dev/null +++ b/debian/patches/lp1153725-temporary-workaround.patch @@ -0,0 +1,25 @@ +Description: Skip expected failures due to LP: #1153725. + Remove this when the actual bug is fixed or when we have a better patch. +Author: Barry Warsaw <barry@ubuntu.com> +Forwarded: not-needed + +Index: aptdaemon-1.0/tests/test_high_trust_repository_whitelist.py +=================================================================== +--- aptdaemon-1.0.orig/tests/test_high_trust_repository_whitelist.py 2013-03-18 14:24:18.377381909 +0100 ++++ aptdaemon-1.0/tests/test_high_trust_repository_whitelist.py 2013-03-18 14:24:43.493382864 +0100 +@@ -72,6 +72,7 @@ + self.worker.connect("transaction-simulated", + lambda w, t: self.loop.quit()) + ++ @unittest.expectedFailure + def test_read_high_trust_repository_whitelist_dir(self): + whitelist = read_high_trust_repository_dir( + os.path.join(aptdaemon.test.get_tests_dir(), +@@ -167,6 +168,7 @@ + self.start_fake_polkitd(PK_ACTION) + time.sleep(1) + ++ @unittest.expectedFailure + def test_high_trust_polkit_ok(self): + self.client = aptdaemon.client.AptClient(self.bus) + # test that the high trust whitelist works |