diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-07-06 10:40:18 +0200 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-07-06 08:44:57 +0000 |
commit | 0129a089707e5dbbb440654c03818a643f5353e0 (patch) | |
tree | 727b941401ea4bff4e72a67c27614bc910c61c99 | |
parent | e635dbe042f7e6f806550aa5f31f2c409166a87f (diff) |
bug fix: use PASS/FAIL for rally
Change-Id: I1f870aad5b648f24f8097028ba97d6c118402586
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
-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 78393224..47b826d6 100755 --- a/testcases/OpenStack/rally/run_rally-cert.py +++ b/testcases/OpenStack/rally/run_rally-cert.py @@ -530,10 +530,10 @@ def main(): # logger.info("Results: "+str(json_results)) # Evaluation of the success criteria - status = "failed" + status = "FAIL" # for Rally we decided that the overall success rate must be above 90% if total_success >= 90: - status = "passed" + status = "PASS" if args.sanity: case_name = "rally_sanity" |