Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-05-23 08:38:23 +0300
committerJunio C Hamano <gitster@pobox.com>2018-05-23 08:38:23 +0300
commit02d11bb5c6d5487b0bc7a2d89bbc48c81cc4b471 (patch)
tree81b8f48b8c7c42e81ab51284cdc2ffbed203c64c /t
parentbe75d12982e614685f47bff67676eb69c60bf624 (diff)
parentd9ea451ab6c11d548d3a11183fdbce49385f2e56 (diff)
Merge branch 'cc/perf-bisect'
Performance test updates. * cc/perf-bisect: perf/bisect_run_script: disable codespeed
Diffstat (limited to 't')
-rwxr-xr-xt/perf/bisect_run_script6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/perf/bisect_run_script b/t/perf/bisect_run_script
index 038255df4b..3ebaf15521 100755
--- a/t/perf/bisect_run_script
+++ b/t/perf/bisect_run_script
@@ -24,6 +24,12 @@ result_file="$info_dir/perf_${script_number}_${bisect_head}_results.txt"
GIT_PERF_DIRS_OR_REVS="$bisect_head"
export GIT_PERF_DIRS_OR_REVS
+# Don't use codespeed
+GIT_PERF_CODESPEED_OUTPUT=
+GIT_PERF_SEND_TO_CODESPEED=
+export GIT_PERF_CODESPEED_OUTPUT
+export GIT_PERF_SEND_TO_CODESPEED
+
./run "$script" >"$result_file" 2>&1 || die "Failed to run perf test '$script'"
rtime=$(sed -n "s/^$script_number\.$test_number:.*\([0-9]\+\.[0-9]\+\)(.*).*\$/\1/p" "$result_file")