Git fork

perf/bisect_run_script: disable codespeed

When bisecting a performance regression using a config file,
`./bisect_regression --config my_perf.conf` for example, the
config file can contain Codespeed configuration which would
instruct the 'aggregate.perl' script called by the 'run'
script to output results in the Codespeed format and maybe
to try to send this output to a Codespeed server.

This is unfortunate because the 'bisect_run_script' relies
on the regular output from 'aggregate.perl' to mesure
performance, so let's disable Codespeed output and sending
results to a Codespeed server.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Christian Couder and committed by
Junio C Hamano
d9ea451a 297e685c

+6
+6
t/perf/bisect_run_script
··· 24 24 GIT_PERF_DIRS_OR_REVS="$bisect_head" 25 25 export GIT_PERF_DIRS_OR_REVS 26 26 27 + # Don't use codespeed 28 + GIT_PERF_CODESPEED_OUTPUT= 29 + GIT_PERF_SEND_TO_CODESPEED= 30 + export GIT_PERF_CODESPEED_OUTPUT 31 + export GIT_PERF_SEND_TO_CODESPEED 32 + 27 33 ./run "$script" >"$result_file" 2>&1 || die "Failed to run perf test '$script'" 28 34 29 35 rtime=$(sed -n "s/^$script_number\.$test_number:.*\([0-9]\+\.[0-9]\+\)(.*).*\$/\1/p" "$result_file")