summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtcwg_bmk-build.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/tcwg_bmk-build.sh b/tcwg_bmk-build.sh
index e2c5700d..2e43fdca 100755
--- a/tcwg_bmk-build.sh
+++ b/tcwg_bmk-build.sh
@@ -484,19 +484,20 @@ EOF
the following benchmarks $regressed_by more than ${exe_threshold}%:
EOF
- while IFS=, read metric bmk symbol short_regression regression; do
+ local exe
+ while IFS=, read metric exe symbol short_regression regression; do
cat >> $run_step_artifacts/jira-body.txt <<EOF
- $regression
EOF
- if [ -f $run_step_artifacts/$bmk.regression ]; then
+ if [ -f $run_step_artifacts/$exe.regression ]; then
while IFS=, read metric bmk symbol short_regression regression; do
cat >> $run_step_artifacts/jira-body.txt <<EOF
- $regression
EOF
- done < $run_step_artifacts/$bmk.regression
+ done < $run_step_artifacts/$exe.regression
# Delete $bmk.regressions so that it doesn't show up
# in symbol-regression loop below.
- rm $run_step_artifacts/$bmk.regression
+ rm $run_step_artifacts/$exe.regression
fi
done < $run_step_artifacts/exe.regressions
fi