From: Martin Klozik Date: Tue, 19 Jan 2016 11:27:22 +0000 (+0000) Subject: ci: show TC results inside Jenkins job console output X-Git-Tag: colorado.1.0~162 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F75%2F7275%2F3;p=vswitchperf.git ci: show TC results inside Jenkins job console output It is required to show detailed result figures together with OK/FAILED status. CI script has been modified to show formatted results from test report MD files. Change-Id: I9e3724c5aac517dc493f0cf57fc8292434c0bfe8 JIRA: VSPERF-184 Signed-off-by: Martin Klozik Reviewed-by: Maryam Tahhan --- diff --git a/ci/build-vsperf.sh b/ci/build-vsperf.sh index 7c847673..e08dd357 100755 --- a/ci/build-vsperf.sh +++ b/ci/build-vsperf.sh @@ -149,6 +149,18 @@ function execute_vsperf() { else print_results "/${RES_DIR}" fi + + # show detailed result figures + for md_file in $(grep '\.md"$' $LOG_FILE | cut -d'"' -f2); do + # TC resut file header + echo -e "\n-------------------------------------------------------------------" + echo -e " $md_file" + echo -e "-------------------------------------------------------------------\n" + # TC details + sed -n '/^- Test ID/,/Bidirectional/{/Packet size/b;p;/Bidirectional/q};/Results\/Metrics Collected/,/Statistics collected/{/^$/p;/^|/p}' $md_file + # TC results + sed -n '/Results\/Metrics Collected/,/Statistics collected/{/^$/p;/^|/p}' $md_file | grep -v "Unknown" | cat -s + done } #