summaryrefslogtreecommitdiffstats
path: root/tests/functional/fuse_subdir/test_fusesubdir_with_removebrick.py
diff options
context:
space:
mode:
authorValerii Ponomarov <vponomar@redhat.com>2019-12-09 22:29:05 +0530
committerBala Konda Reddy M <bmekala@redhat.com>2019-12-12 11:35:30 +0000
commit79e82b1f04184d895638a78c7c57ea49d936efe7 (patch)
treec96902c06a689418378d9afc9bba3774c24a6539 /tests/functional/fuse_subdir/test_fusesubdir_with_removebrick.py
parenta3ea01c342573a02f7717960affa51ed141d7737 (diff)
[py2to3] Add py3 support in 'tests/functional/fuse_subdir'
Change-Id: I56194047ac6105cddb43d3f413b03bcdbbcde587 Signed-off-by: Valerii Ponomarov <kiparis.kh@gmail.com>
Diffstat (limited to 'tests/functional/fuse_subdir/test_fusesubdir_with_removebrick.py')
-rw-r--r--tests/functional/fuse_subdir/test_fusesubdir_with_removebrick.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/functional/fuse_subdir/test_fusesubdir_with_removebrick.py b/tests/functional/fuse_subdir/test_fusesubdir_with_removebrick.py
index 1b43ac668..3b94fc1ff 100644
--- a/tests/functional/fuse_subdir/test_fusesubdir_with_removebrick.py
+++ b/tests/functional/fuse_subdir/test_fusesubdir_with_removebrick.py
@@ -14,7 +14,10 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import copy
+import sys
+
from glusto.core import Glusto as g
+
from glustolibs.gluster.gluster_base_class import (GlusterBaseClass,
runs_on)
from glustolibs.gluster.mount_ops import (mount_volume,
@@ -42,7 +45,7 @@ class SubdirWithRemoveBrick(GlusterBaseClass):
setup volume and mount volume
calling GlusterBaseClass setUpClass
"""
- GlusterBaseClass.setUpClass.im_func(cls)
+ cls.get_super_method(cls, 'setUpClass')()
# Setup Volume and Mount Volume
g.log.info("Starting to Setup and Mount Volume %s",
@@ -145,13 +148,14 @@ class SubdirWithRemoveBrick(GlusterBaseClass):
for mount_obj in self.subdir_mounts:
g.log.info("Starting IO on %s:%s", mount_obj.client_system,
self.mpoint)
- cmd = ("python %s create_deep_dirs_with_files "
+ cmd = ("/usr/bin/env python%d %s create_deep_dirs_with_files "
"--dirname-start-num %d "
"--dir-depth 2 "
"--dir-length 10 "
"--max-num-of-dirs 5 "
- "--num-of-files 5 %s" % (self.script_upload_path, count,
- self.mpoint))
+ "--num-of-files 5 %s" % (
+ sys.version_info.major, self.script_upload_path, count,
+ self.mpoint))
proc = g.run_async(mount_obj.client_system, cmd,
user=mount_obj.user)
all_mounts_procs.append(proc)