summaryrefslogtreecommitdiffstats
path: root/tests/functional/afr/test_self_heal_with_quota_object_limit.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/afr/test_self_heal_with_quota_object_limit.py')
-rw-r--r--tests/functional/afr/test_self_heal_with_quota_object_limit.py18
1 files changed, 7 insertions, 11 deletions
diff --git a/tests/functional/afr/test_self_heal_with_quota_object_limit.py b/tests/functional/afr/test_self_heal_with_quota_object_limit.py
index 39d49e675..e340c0a39 100644
--- a/tests/functional/afr/test_self_heal_with_quota_object_limit.py
+++ b/tests/functional/afr/test_self_heal_with_quota_object_limit.py
@@ -20,9 +20,6 @@
Test cases in this module tests whether SHD heals the
files in a directory when quota-object-limit is set.
"""
-
-import sys
-
from glusto.core import Glusto as g
from glustolibs.gluster.exceptions import ExecutionError
@@ -99,8 +96,8 @@ class HealFilesWhenQuotaObjectLimitExceeded(GlusterBaseClass):
g.log.info("Creating a directory")
self.all_mounts_procs = []
for mount_object in self.mounts:
- cmd = "/usr/bin/env python%d %s create_deep_dir -d 0 -l 0 %s%s" % (
- sys.version_info.major, self.script_upload_path,
+ cmd = "/usr/bin/env python %s create_deep_dir -d 0 -l 0 %s%s" % (
+ self.script_upload_path,
mount_object.mountpoint, path)
ret = g.run(mount_object.client_system, cmd)
self.assertTrue(ret, "Failed to create directory on mountpoint")
@@ -140,9 +137,9 @@ class HealFilesWhenQuotaObjectLimitExceeded(GlusterBaseClass):
for mount_object in self.mounts:
g.log.info("Creating Files on %s:%s", mount_object.client_system,
path)
- cmd = ("/usr/bin/env python%d %s create_files -f 3 "
+ cmd = ("/usr/bin/env python %s create_files -f 3 "
"--base-file-name file-0 %s%s" % (
- sys.version_info.major, self.script_upload_path,
+ self.script_upload_path,
mount_object.mountpoint, path))
ret, _, _ = g.run(mount_object.client_system, cmd)
self.assertEqual(ret, 0, ("Failed to create files on %s", path))
@@ -165,10 +162,9 @@ class HealFilesWhenQuotaObjectLimitExceeded(GlusterBaseClass):
# Try creating 5 more files, which should fail as the quota limit
# exceeds
- cmd = ("/usr/bin/env python%d %s create_files -f 5 --base-file-name "
- "file-1 %s%s" % (
- sys.version_info.major, self.script_upload_path,
- mount_object.mountpoint, path))
+ cmd = ("/usr/bin/env python %s create_files -f 5 --base-file-name "
+ "file-1 %s%s" % (self.script_upload_path,
+ mount_object.mountpoint, path))
ret, _, _ = g.run(mount_object.client_system, cmd)
self.assertNotEqual(ret, 0, ("Creating 5 files succeeded while it was"
"not supposed to."))