summaryrefslogtreecommitdiff
path: root/t/perf
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-09-21 22:15:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-09-21 22:15:27 (GMT)
commit0c5ff91639ab568e7cc7ecdad70a05e2888524f8 (patch)
tree5154949d834d18250bccd12b7a34e3580a57e640 /t/perf
parentac5ce66adc252d6291b32b5b342d224cbcc2e759 (diff)
parentcd5c2812b6a8172a7eaef712cdfad1aaa259fb0b (diff)
downloadgit-0c5ff91639ab568e7cc7ecdad70a05e2888524f8.zip
git-0c5ff91639ab568e7cc7ecdad70a05e2888524f8.tar.gz
git-0c5ff91639ab568e7cc7ecdad70a05e2888524f8.tar.bz2
Merge branch 'ks/perf-build-with-autoconf'
Performance tests done via "t/perf" did not use the same set of build configuration if the user relied on autoconf generated configuration. * ks/perf-build-with-autoconf: t/perf/run: copy config.mak.autogen & friends to build area
Diffstat (limited to 't/perf')
-rwxr-xr-xt/perf/run8
1 files changed, 7 insertions, 1 deletions
diff --git a/t/perf/run b/t/perf/run
index cfd7012..e8adeda 100755
--- a/t/perf/run
+++ b/t/perf/run
@@ -30,7 +30,13 @@ unpack_git_rev () {
}
build_git_rev () {
rev=$1
- cp ../../config.mak build/$rev/config.mak
+ for config in config.mak config.mak.autogen config.status
+ do
+ if test -e "../../$config"
+ then
+ cp "../../$config" "build/$rev/"
+ fi
+ done
(cd build/$rev && make $GIT_PERF_MAKE_OPTS) ||
die "failed to build revision '$mydir'"
}