bug fix: use PASS/FAIL for rally 27/16427/2
authorMorgan Richomme <morgan.richomme@orange.com>
Wed, 6 Jul 2016 08:40:18 +0000 (10:40 +0200)
committerJose Lausuch <jose.lausuch@ericsson.com>
Wed, 6 Jul 2016 08:44:57 +0000 (08:44 +0000)
Change-Id: I1f870aad5b648f24f8097028ba97d6c118402586
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
testcases/OpenStack/rally/run_rally-cert.py

index 7839322..47b826d 100755 (executable)
@@ -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"