Petr Horáček has uploaded a new change for review. Change subject: tests: netlink: skip test_events_keys ......................................................................
tests: netlink: skip test_events_keys This test is known for making troubles: different systems, different event order. Skip it untill we figure it out. Change-Id: I81decdfc2f8dfe1040409f06ad5f7c0cf4f7dd17 Signed-off-by: Petr Horáček <[email protected]> --- M tests/netlinkTests.py 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/14/40814/1 diff --git a/tests/netlinkTests.py b/tests/netlinkTests.py index 280cead..44bdf6c 100644 --- a/tests/netlinkTests.py +++ b/tests/netlinkTests.py @@ -7,7 +7,7 @@ from vdsm.netlink import monitor from vdsm.utils import monotonic_time -from testValidation import ValidateRunningAsRoot +from testValidation import ValidateRunningAsRoot, brokentest from testlib import VdsmTestCase as TestCaseBase @@ -92,6 +92,8 @@ iterator.next() @ValidateRunningAsRoot + @brokentest('This test is known to make troubles: different systems, ' + 'different events order.') def test_events_keys(self): def _expected_events(nic, address, cidr): return deque([ -- To view, visit https://gerrit.ovirt.org/40814 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I81decdfc2f8dfe1040409f06ad5f7c0cf4f7dd17 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Petr Horáček <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
