diff options
| author | Valerii Ponomarov <vponomar@redhat.com> | 2019-12-09 22:01:05 +0530 |
|---|---|---|
| committer | Bala Konda Reddy M <bmekala@redhat.com> | 2019-12-12 11:28:00 +0000 |
| commit | a7b8abe275c123a4ac980f414ce9ac284d15b3c6 (patch) | |
| tree | e8728a8929bbae81fca82119f362f77925c35940 /tests/functional/disperse/test_ec_remove_brick.py | |
| parent | 7f14da0b81d47639803ebb91ff315bf7ba85a3f2 (diff) | |
[py2to3] Add py3 support in 'tests/functional/disperse'
Change-Id: I308f95d16ac18ec80c5c78aac9152d9ae41449bb
Signed-off-by: Valerii Ponomarov <kiparis.kh@gmail.com>
Diffstat (limited to 'tests/functional/disperse/test_ec_remove_brick.py')
| -rw-r--r-- | tests/functional/disperse/test_ec_remove_brick.py | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/tests/functional/disperse/test_ec_remove_brick.py b/tests/functional/disperse/test_ec_remove_brick.py index cb8238831..b664f5821 100644 --- a/tests/functional/disperse/test_ec_remove_brick.py +++ b/tests/functional/disperse/test_ec_remove_brick.py @@ -13,7 +13,10 @@ # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +import sys + from glusto.core import Glusto as g + from glustolibs.gluster.gluster_base_class import (GlusterBaseClass, runs_on) from glustolibs.gluster.exceptions import ExecutionError @@ -37,7 +40,7 @@ class DispersedWithAddBrick(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", @@ -80,13 +83,14 @@ class DispersedWithAddBrick(GlusterBaseClass): for mount_obj in self.mounts: g.log.info("Starting IO on %s:%s", mount_obj.client_system, mount_obj.mountpoint) - 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, - mount_obj.mountpoint)) + "--num-of-files 5 %s" % ( + sys.version_info.major, self.script_upload_path, count, + mount_obj.mountpoint)) proc = g.run_async(mount_obj.client_system, cmd, user=mount_obj.user) all_mounts_procs.append(proc) @@ -128,13 +132,14 @@ class DispersedWithAddBrick(GlusterBaseClass): for mount_obj in self.mounts: g.log.info("Starting IO on %s:%s", mount_obj.client_system, mount_obj.mountpoint) - 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, - mount_obj.mountpoint)) + "--num-of-files 5 %s" % ( + sys.version_info.major, self.script_upload_path, count, + mount_obj.mountpoint)) proc = g.run_async(mount_obj.client_system, cmd, user=mount_obj.user) all_mounts_procs.append(proc) |
