summaryrefslogtreecommitdiffstats
path: root/TestUnits/cli/volume/top/testcases.py
diff options
context:
space:
mode:
Diffstat (limited to 'TestUnits/cli/volume/top/testcases.py')
-rw-r--r--TestUnits/cli/volume/top/testcases.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/TestUnits/cli/volume/top/testcases.py b/TestUnits/cli/volume/top/testcases.py
index 99775b5..182f29d 100644
--- a/TestUnits/cli/volume/top/testcases.py
+++ b/TestUnits/cli/volume/top/testcases.py
@@ -155,9 +155,9 @@ def bug2725a():
commands.append("echo 'Hello World' > " + dir_name)
commands.append("find . | xargs touch")
for command in commands:
- return_status = clientutils.execute_on_mount("mount1", command)
- if return_status:
- return return_status
+ output = clientutils.execute_on_mount("mount1", command)
+ if output["exitstatus"]:
+ return 1
command = "gluster volume top <volume1.volumename> open"
expected_output = ""
@@ -178,9 +178,9 @@ def bug2725b():
commands.append("echo 'Hello World' > " + dir_name)
commands.append("find . | xargs touch")
for command in commands:
- return_status = clientutils.execute_on_mount("mount1", command)
- if return_status:
- return return_status
+ output = clientutils.execute_on_mount("mount1", command)
+ if output["exitstatus"]:
+ return 1
commands = []
commands.append("gluster volume top <volume1.volumename> open")