kpi: Support adding git-log info to the Run report.

This commit is contained in:
Ben Greear
2020-04-30 20:48:48 -07:00
parent c1512b48a4
commit 11e8362be9
5 changed files with 44 additions and 6 deletions

View File

@@ -339,7 +339,18 @@ then
mv $MY_TMPDIR/dut_console_log.txt $RSLTS_DIR/
fi
./lf_gui_report_summary.pl --title "TIP Test Bed Results" --dir $RSLTS_DIR < index_template.html > $RSLTS_DIR/index.html
RPT_ARGS=
if [ "_${NOTES_HTML}" == "_" ]
then
NOTES_HTML=NA
fi
if [ "_${GITLOG}" == "_" ]
then
GITLOG=NA
fi
./lf_gui_report_summary.pl --title "TIP Test Bed Results" --dir $RSLTS_DIR --gitlog $GITLOG --notes $NOTES_HTML < index_template.html > $RSLTS_DIR/index.html
echo "Done with regression test."
echo "Results-Dir: $RSLTS_DIR"