From b2cebae3cab11b97771344cb689babf71a691d2c Mon Sep 17 00:00:00 2001 From: rexlee8776 Date: Wed, 17 Aug 2016 04:38:29 +0000 Subject: add starttime stoptime for mongodb Change-Id: Ia818d37f12af4576b98c578d819df0bb0998c154 Signed-off-by: rexlee8776 --- tests/ci/yardstick-verify | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'tests/ci') diff --git a/tests/ci/yardstick-verify b/tests/ci/yardstick-verify index bdb91003d..8f67b9ffb 100755 --- a/tests/ci/yardstick-verify +++ b/tests/ci/yardstick-verify @@ -267,15 +267,17 @@ password = 0pnfv2015 EOF local failed=0 + local start_date + local stop_date if [ ${#SUITE_FILES[@]} -gt 0 ]; then + start_date=$(date '+%Y-%m-%d %H:%M:%S') for suite in ${SUITE_FILES[*]}; do echo "---------------------------" echo "Running test suite: $suite" echo "---------------------------" - if ! yardstick task start --suite $suite; then echo "test suite $suite FAILED"; @@ -293,8 +295,10 @@ EOF echo "Test result file ${DISPATCHER_FILE_NAME} is not exist" fi fi - done + stop_date=$(date '+%Y-%m-%d %H:%M:%S') + + local sceanrio_status="SUCCESS" @@ -303,12 +307,14 @@ EOF fi curl -i -H 'content-type: application/json' -X POST -d \ "{\"project_name\": \"yardstick\", + \"case_name\": \"scenario_status\", \"pod_name\":\"${NODE_NAME}\", \"installer\":\"${INSTALLER_TYPE}\", - \"description\": \"yardstick ci scenario status\", - \"case_name\": \"scenario_status\", \"version\":\"${YARDSTICK_BRANCH}\", \"scenario\":\"${DEPLOY_SCENARIO}\", + \"description\": \"yardstick ci scenario status\", + \"start_date\":\"${start_date}\", + \"stop_date\":\"${stop_date}\", \"details\":\"${sceanrio_status}\"}" \ ${DISPATCHER_HTTP_TARGET} -- cgit 1.2.3-korg