blob: 83320584e93b61eb44704c2060defb49dfe25327 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|