Skip to content

Commit 6715ffb

Browse files
author
Chao Song
committed
lib.sh: generate html instead csv for performance test
HTML format is more friendly to CI than csv format. It is easy to read in CI. Signed-off-by: Chao Song <chao.song@linux.intel.com>
1 parent 23c02a9 commit 6715ffb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

case-lib/lib.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -963,9 +963,9 @@ perf_analyze()
963963
dlogi "Checking SOF component performance"
964964
if [ -e "$LOG_ROOT/mtrace.txt" ]; then
965965
if [ -e "$LOG_ROOT/dmesg.txt" ]; then
966-
perf_cmd="sof_perf_analyzer.py --skip-to-first-trace --kmsg=$LOG_ROOT/dmesg.txt --out2csv $LOG_ROOT/sof_perf.txt $LOG_ROOT/mtrace.txt"
966+
perf_cmd="sof_perf_analyzer.py --skip-to-first-trace --kmsg=$LOG_ROOT/dmesg.txt --out2html $LOG_ROOT/sof_perf.html $LOG_ROOT/mtrace.txt"
967967
else
968-
perf_cmd="sof_perf_analyzer.py --skip-to-first-trace --out2csv $LOG_ROOT/sof_perf.txt $LOG_ROOT/mtrace.txt"
968+
perf_cmd="sof_perf_analyzer.py --skip-to-first-trace --out2html $LOG_ROOT/sof_perf.html $LOG_ROOT/mtrace.txt"
969969
fi
970970
dlogc "$perf_cmd"
971971
eval "$perf_cmd" || {

0 commit comments

Comments
 (0)