Dan Kenigsberg has uploaded a new change for review. Change subject: mark two more tests that fail within mock ......................................................................
mark two more tests that fail within mock Until we understand why Change-Id: I431171cb5543816759f81236c2333c13eda36673 Signed-off-by: Dan Kenigsberg <[email protected]> --- M tests/mountTests.py 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/13/40113/1 diff --git a/tests/mountTests.py b/tests/mountTests.py index 0b55a21..49a880a 100644 --- a/tests/mountTests.py +++ b/tests/mountTests.py @@ -31,7 +31,7 @@ from testlib import namedTemporaryDir from storage.misc import execCmd import storage.mount as mount -from testValidation import checkSudo +from testValidation import brokentest, checkSudo import monkeypatch FLOPPY_SIZE = (2 ** 20) * 4 @@ -63,6 +63,7 @@ class MountTests(TestCaseBase): + @brokentest('sometimes fails when run in mock') def testLoopMount(self): checkSudo(["mount", "-o", "loop", "somefile", "target"]) checkSudo(["umount", "target"]) @@ -76,6 +77,7 @@ finally: m.umount() + @brokentest('sometimes fails when run in mock') def testSymlinkMount(self): checkSudo(["mount", "-o", "loop", "somefile", "target"]) checkSudo(["umount", "target"]) -- To view, visit https://gerrit.ovirt.org/40113 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I431171cb5543816759f81236c2333c13eda36673 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Dan Kenigsberg <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
