diff options
Diffstat (limited to 'tests/functional')
| -rw-r--r-- | tests/functional/snapshot/test_mount_snap.py | 5 | ||||
| -rw-r--r-- | tests/functional/snapshot/test_restore_online_vol.py | 2 | 
2 files changed, 5 insertions, 2 deletions
diff --git a/tests/functional/snapshot/test_mount_snap.py b/tests/functional/snapshot/test_mount_snap.py index 9b0bf2bfe..ef918ba8b 100644 --- a/tests/functional/snapshot/test_mount_snap.py +++ b/tests/functional/snapshot/test_mount_snap.py @@ -84,14 +84,17 @@ class TestSnapMountSnapshot(GlusterBaseClass):          g.log.info("Starting IO on all mounts...")          g.log.info("mounts: %s", self.mounts)          all_mounts_procs = [] +        self.counter = 1          for mount_obj in self.mounts:              cmd = ("/usr/bin/env python %s create_files " -                   "-f 10 --base-file-name file %s" % ( +                   "-f 10 --base-file-name file%d %s" % (                         self.script_upload_path, +                       self.counter,                         mount_obj.mountpoint))              proc = g.run_async(mount_obj.client_system, cmd,                                 user=mount_obj.user)              all_mounts_procs.append(proc) +            self.counter += 100          # Validate I/O          self.assertTrue( diff --git a/tests/functional/snapshot/test_restore_online_vol.py b/tests/functional/snapshot/test_restore_online_vol.py index 2a7f39cae..2fa46012b 100644 --- a/tests/functional/snapshot/test_restore_online_vol.py +++ b/tests/functional/snapshot/test_restore_online_vol.py @@ -112,9 +112,9 @@ class SnapRSOnline(GlusterBaseClass):                         "--num-of-files 2 %s" % (                             self.script_upload_path,                             self.counter, mount_obj.mountpoint)) -                  proc = g.run_async(mount_obj.client_system, cmd,                                     user=mount_obj.user) +                self.counter += 100                  self.all_mounts_procs.append(proc)              self.io_validation_complete = False  | 
