diff options
author | chenjiankun <chenjiankun1@huawei.com> | 2017-10-12 06:27:11 +0000 |
---|---|---|
committer | chenjiankun <chenjiankun1@huawei.com> | 2017-10-12 06:27:11 +0000 |
commit | f4680c872fbb34816d809c41852740f5cb960fd1 (patch) | |
tree | 0947effc4c5ea0b20284ea04608db5487d5443d2 /tests | |
parent | 3ffb7fd322dcf35c4bdf69ac4f12525516f11704 (diff) |
Change 'SUCCESS' to 'PASS' when report to MongoDB
JIRA: YARDSTICK-822
To keep consistent with other testing project, we need to
change 'SUCCESS' to 'PASS', 'FAILED' to 'FAIL'.
Change-Id: I392e4dc6dd2e028cd43cba0d1bf8ee04618326d7
Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/ci/yardstick-verify | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ci/yardstick-verify b/tests/ci/yardstick-verify index f3e7a49e3..d1174825f 100755 --- a/tests/ci/yardstick-verify +++ b/tests/ci/yardstick-verify @@ -209,10 +209,10 @@ EOF - local scenario_status="SUCCESS" + local scenario_status="PASS" if [ $failed -gt 0 ]; then - scenario_status="FAILED" + scenario_status="FAIL" fi report "${scenario_status}" "${start_date}" "${stop_date}" |