diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-09-14 20:38:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-09-17 22:00:27 -0700 |
commit | 1b3185fc2be3cc92a834fcfcb7110d1072184700 (patch) | |
tree | 98a90bc1a144e41ce727b9270a7e19de0acd0887 /t/perf | |
parent | a731fa916e5ce000eeb23f3c858c9218c78633d6 (diff) | |
download | git-1b3185fc2be3cc92a834fcfcb7110d1072184700.tar.gz |
MALLOC_CHECK: various clean-ups
The most important in this change is to avoid affecting anything
when test-lib is used from perf-lib. It also limits the effect of
the MALLOC_CHECK only to what is run inside the actual test, and
uses a fixed MALLOC_PERTURB_ in order to avoid hurting repeatability
of the tests.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/perf')
-rw-r--r-- | t/perf/perf-lib.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/perf/perf-lib.sh b/t/perf/perf-lib.sh index a1361e530c..1d0bb9d017 100644 --- a/t/perf/perf-lib.sh +++ b/t/perf/perf-lib.sh @@ -42,6 +42,7 @@ else fi TEST_NO_CREATE_REPO=t +TEST_NO_MALLOC_=t . ../test-lib.sh |