ci: show TC results inside Jenkins job console output 75/7275/3
authorMartin Klozik <martinx.klozik@intel.com>
Tue, 19 Jan 2016 11:27:22 +0000 (11:27 +0000)
committerMaryam Tahhan <maryam.tahhan@intel.com>
Tue, 19 Jan 2016 13:07:34 +0000 (13:07 +0000)
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 <martinx.klozik@intel.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
ci/build-vsperf.sh

index 7c84767..e08dd35 100755 (executable)
@@ -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
 }
 
 #