summaryrefslogtreecommitdiffstats
path: root/testcases/OpenStack/rally/run_rally-cert.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-07-06 10:40:18 +0200
committerJose Lausuch <jose.lausuch@ericsson.com>2016-07-06 08:44:57 +0000
commit0129a089707e5dbbb440654c03818a643f5353e0 (patch)
tree727b941401ea4bff4e72a67c27614bc910c61c99 /testcases/OpenStack/rally/run_rally-cert.py
parente635dbe042f7e6f806550aa5f31f2c409166a87f (diff)
bug fix: use PASS/FAIL for rally
Change-Id: I1f870aad5b648f24f8097028ba97d6c118402586 Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'testcases/OpenStack/rally/run_rally-cert.py')
-rwxr-xr-xtestcases/OpenStack/rally/run_rally-cert.py4
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 783932249..47b826d6c 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"