diff options
| author | Yaniv Kaul <ykaul@redhat.com> | 2018-07-03 00:45:30 +0300 |
|---|---|---|
| committer | Nigel Babu <nigelb@redhat.com> | 2018-07-17 04:14:01 +0000 |
| commit | 02dbb7a68f828863e5b71dc15488e665d484ab6e (patch) | |
| tree | 4ae10586c3f26f9e73a6d533bbd4af88094c6ef5 /tests/functional/snapshot/test_validate_snaps_dir_over_uss.py | |
| parent | 87f9679588c54c550447acdc8f0cc15626c7d881 (diff) | |
Shorten all the logs around verify_io_procs
No functional change, just make the tests a bit more readable.
It could be moved to a decorator later on, wrapping tests.
Change-Id: I484bb8b46907ee8f33dfcf4c960737a21819cd6a
Signed-off-by: Yaniv Kaul <ykaul@redhat.com>
Diffstat (limited to 'tests/functional/snapshot/test_validate_snaps_dir_over_uss.py')
| -rw-r--r-- | tests/functional/snapshot/test_validate_snaps_dir_over_uss.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/functional/snapshot/test_validate_snaps_dir_over_uss.py b/tests/functional/snapshot/test_validate_snaps_dir_over_uss.py index 5b91f8b40..8fcce0096 100644 --- a/tests/functional/snapshot/test_validate_snaps_dir_over_uss.py +++ b/tests/functional/snapshot/test_validate_snaps_dir_over_uss.py @@ -139,11 +139,11 @@ class TestValidateUss(GlusterBaseClass): self.io_validation_complete = False # Validate IO - g.log.info("Wait for IO to complete and validate IO ...") - ret = validate_io_procs(self.all_mounts_procs, self.mounts) - self.assertTrue(ret, "IO failed on some of the clients") + self.assertTrue( + validate_io_procs(self.all_mounts_procs, self.mounts), + "IO failed on some of the clients" + ) self.io_validation_complete = True - g.log.info("I/O successful on clients") # get the snapshot list. snap_list = get_snap_list(self.mnode) @@ -212,8 +212,10 @@ class TestValidateUss(GlusterBaseClass): # IO should fail g.log.info("IO should Fail with ROFS error.....") - ret = validate_io_procs(all_mounts_procs, self.mounts) - self.assertFalse(ret, "Unexpected: IO successfully completed") + self.assertFalse( + validate_io_procs(all_mounts_procs, self.mounts), + "Unexpected: IO successfully completed" + ) g.log.info("Expected: IO failed to complete") # validate snap-0 present in mountpoint |
