We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3874d5 commit bbb16f4Copy full SHA for bbb16f4
devops/scripts/benchmarking/benchmark.sh
@@ -161,7 +161,8 @@ process_benchmarks() {
161
exit_status="$?"
162
if [ "$exit_status" -eq 0 ] && [ -s "$output_csv" ]; then
163
# Filter out header lines not in csv format:
164
- tail +8 "$output_csv" > "$output_csv"
+ tail +8 "$output_csv" > .tmp_res
165
+ mv .tmp_res "$output_csv"
166
check_and_cache $output_csv_relpath
167
else
168
echo "[ERROR] $testcase returned exit status $exit_status"
0 commit comments