Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions coremark/coremark_run
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ run_coremark()
done
$TOOLS_BIN/test_header_info --front_matter --results_file $results_file --host $to_configuration --sys_type $to_sys_type --tuned $to_tuned_setting --results_version $coremark_version --test_name $test_name

echo "iteration:threads:test passes" >> $results_file
echo "iteration:threads:IterationsPerSec" >> $results_file
sort -n $csv_file >> $results_file
rm $csv_file
}
Expand All @@ -243,7 +243,7 @@ produce_report()
total_time=`echo ${total_time}+${value} | bc`
continue
fi
if [[ $line == "Iterations/sec"* ]]; then
if [[ $line == "IterationsPerSec"* ]]; then
value=`echo $line | cut -d':' -f2 | sed "s/ //g"`
iterations=`echo ${iterations}+${value} | bc`
continue
Expand Down