diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-06-29 16:25:25 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-06-29 16:25:25 +0200 |
commit | 3e0c573b1ead3547a6a1e73b491680e15a9d5cad (patch) | |
tree | 9e6b9a3f5545eb4961b492069a50e4cdb8f83365 /testcases/OpenStack/rally | |
parent | 130111453725c2155dce0be8ebdd210fa2aa2dff (diff) |
bug fix: use FAIL/PASS as criteria for vping_userdata and rally_sanity
Change-Id: Iadccae118bb2dc557bb590175c65022c1ed70605
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'testcases/OpenStack/rally')
-rwxr-xr-x | testcases/OpenStack/rally/run_rally-cert.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testcases/OpenStack/rally/run_rally-cert.py b/testcases/OpenStack/rally/run_rally-cert.py index 8afbccaa3..783932249 100755 --- a/testcases/OpenStack/rally/run_rally-cert.py +++ b/testcases/OpenStack/rally/run_rally-cert.py @@ -355,10 +355,10 @@ def run_task(test_name): json_data = json.load(json_file) """ parse JSON operation result """ - status = "failed" + status = "FAIL" if task_succeed(json_results): logger.info('Test scenario: "{}" OK.'.format(test_name) + "\n") - status = "passed" + status = "PASS" else: logger.info('Test scenario: "{}" Failed.'.format(test_name) + "\n") |