From c69a7153e498fb2cb6510d728d060f1f123e8dbd Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Thu, 12 Oct 2017 06:27:11 +0000 Subject: 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 (cherry picked from commit f4680c872fbb34816d809c41852740f5cb960fd1) --- tests/ci/yardstick-verify | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') 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}" -- cgit 1.2.3-korg