diff options
author | Cedric Ollivier <ollivier.cedric@gmail.com> | 2016-10-17 07:10:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-17 07:10:10 +0000 |
commit | 288da283a86007af01c2e71296f8230f6fce07e5 (patch) | |
tree | 40ea0979206ac91ad31158d62e0f3473ebcaaae4 /testcases/features | |
parent | 91acddf71dc4fc48506dddc95621705cbe94ffaf (diff) | |
parent | 6aa929cd8c8a9116c8df23bc0bf4cc76516425e6 (diff) |
Merge "Remove exit() in ft_utils.execute_command"
Diffstat (limited to 'testcases/features')
-rwxr-xr-x | testcases/features/copper.py | 1 | ||||
-rwxr-xr-x | testcases/features/doctor.py | 1 | ||||
-rwxr-xr-x | testcases/features/domino.py | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/testcases/features/copper.py b/testcases/features/copper.py index be6744a95..ab0162626 100755 --- a/testcases/features/copper.py +++ b/testcases/features/copper.py @@ -43,7 +43,6 @@ def main(): log_file = RESULTS_DIR + "/copper.log" ret_val = functest_utils.execute_command(cmd, - exit_on_error=False, output_file=log_file) stop_time = time.time() diff --git a/testcases/features/doctor.py b/testcases/features/doctor.py index 6c26875d3..00e5c1d6b 100755 --- a/testcases/features/doctor.py +++ b/testcases/features/doctor.py @@ -52,7 +52,6 @@ def main(): ret = functest_utils.execute_command(cmd, info=True, - exit_on_error=False, output_file=log_file) stop_time = time.time() diff --git a/testcases/features/domino.py b/testcases/features/domino.py index 75351a56e..7705c07bd 100755 --- a/testcases/features/domino.py +++ b/testcases/features/domino.py @@ -42,7 +42,6 @@ def main(): start_time = time.time() ret = ft_utils.execute_command(cmd, - exit_on_error=False, output_file=log_file) stop_time = time.time() |