Nir Soffer has uploaded a new change for review. Change subject: tests: Abuse permuations to run flaky tests many times ......................................................................
tests: Abuse permuations to run flaky tests many times Change-Id: I066419fb7e06abfc5b8af1206f01e3e87fa80960 Signed-off-by: Nir Soffer <[email protected]> --- M tests/mkimageTests.py 1 file changed, 4 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/37/46337/1 diff --git a/tests/mkimageTests.py b/tests/mkimageTests.py index b99dd08..681ef7f 100644 --- a/tests/mkimageTests.py +++ b/tests/mkimageTests.py @@ -159,7 +159,8 @@ self._check_content() @ValidateRunningAsRoot - @permutations([[None], ['FSLABEL']]) + #@permutations([[None], ['FSLABEL']]) + @permutations([["label-%02d" % i] for i in range(20)]) def test_mkFloppyFs(self, label): """ Tests mkimage.mkFloppyFs creating an image and checking its content. @@ -176,7 +177,8 @@ m.umount(force=True, freeloop=True) os.unlink(floppy) - @permutations([[None], ['fslabel']]) + #@permutations([[None], ['fslabel']]) + @permutations([["label-%02d" % i] for i in range(20)]) def test_mkIsoFs(self, label): """ Tests mkimage.mkIsoFs creating an image and checking its content -- To view, visit https://gerrit.ovirt.org/46337 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I066419fb7e06abfc5b8af1206f01e3e87fa80960 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Nir Soffer <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
