summaryrefslogtreecommitdiff
path: root/tcwg_bmk-build.sh
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2019-09-12 15:00:16 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2019-09-12 15:00:16 +0000
commit2f63352849c22f3b2616b41dc19659ee50d4c9ad (patch)
treec2acdee2bbd517b3c36bc528bdab7dbe815480b6 /tcwg_bmk-build.sh
parent340eb5b2c94b6b2e5705ef291db859bbf99c3522 (diff)
tcwg_bmk-build.sh: Use "symbol" threshold of 15% for libraries
Change-Id: Ia34ac0f4998644c593684e3d3239d5f82f21e4d4
Diffstat (limited to 'tcwg_bmk-build.sh')
-rwxr-xr-xtcwg_bmk-build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tcwg_bmk-build.sh b/tcwg_bmk-build.sh
index 4e76798e..07d226f8 100755
--- a/tcwg_bmk-build.sh
+++ b/tcwg_bmk-build.sh
@@ -253,7 +253,8 @@ no_regression_p ()
if [ "$metric" != "n/a" ]; then
case "$symbol" in
"["*) threshold=$symbol_threshold ;;
- *) threshold=$exe_threshold ;;
+ *"_base.default") threshold=$exe_threshold ;;
+ *) threshold=$symbol_threshold ;;
esac
if [ "$metric" -gt "$threshold" ]; then
echo "Regression in bench $bmk, symbol $symbol ($metric vs $threshold)"