summaryrefslogtreecommitdiff
path: root/tcwg_bmk-build.sh
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2021-03-31 15:25:37 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2021-04-01 08:46:46 +0000
commit00301b92b2448d74417214a5665db62326047e25 (patch)
treeb2410b21b29e651bb80c9d8393d2733d683cfec4 /tcwg_bmk-build.sh
parenta47dceaddd0ea15b019da5dd5fc09ee2f0a0d9d3 (diff)
tcwg_bmk-build.sh: Do not look for perf logs with target==arm_eabi
When benchmarking for arm_eabi, we do not produce perf logs, so inform tcwg-benchmark-results.sh about that. Change-Id: Ifa304bd42ca80cf5d7ba28d8bc3f7377bdbf6b77
Diffstat (limited to 'tcwg_bmk-build.sh')
-rwxr-xr-xtcwg_bmk-build.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/tcwg_bmk-build.sh b/tcwg_bmk-build.sh
index a55b396c..fb4744e6 100755
--- a/tcwg_bmk-build.sh
+++ b/tcwg_bmk-build.sh
@@ -341,6 +341,12 @@ compare_results ()
results_ref=$(cat $ref_results_id)
results_new=$(cat $new_results_id)
+ case "${rr[target]}" in
+ "arm_eabi")
+ cmp_options="$cmp_options --has_perf_logs no"
+ ;;
+ esac
+
$scripts/tcwg-benchmark-results.sh \
--results_ref $results_ref ++results $results_new \
--top_artifacts "$run_step_artifacts" --verbose $verbose \