From: René Scharfe Date: Wed, 26 Sep 2012 20:16:39 +0000 (+0200) Subject: MALLOC_CHECK: enable it, unless disabled explicitly X-Git-Tag: v1.8.0-rc0~2^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ee1431bfc565c5031e66408bc70c42be87a626aa;p=git.git MALLOC_CHECK: enable it, unless disabled explicitly The malloc checks in tests are currently disabled. Actually evaluate the variable for turning them off and enable them if it's unset. Also use this opportunity to give it the more descriptive and consistent name TEST_NO_MALLOC_CHECK. Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- diff --git a/t/perf/perf-lib.sh b/t/perf/perf-lib.sh index 1d0bb9d01..a816fbcb7 100644 --- a/t/perf/perf-lib.sh +++ b/t/perf/perf-lib.sh @@ -42,7 +42,7 @@ else fi TEST_NO_CREATE_REPO=t -TEST_NO_MALLOC_=t +TEST_NO_MALLOC_CHECK=t . ../test-lib.sh diff --git a/t/test-lib.sh b/t/test-lib.sh index aad46066a..9ecbc409a 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -96,7 +96,7 @@ export EDITOR # Add libc MALLOC and MALLOC_PERTURB test # only if we are not executing the test with valgrind if expr " $GIT_TEST_OPTS " : ".* --valgrind " >/dev/null || - test -n "TEST_NO_MALLOC_" + test -n "$TEST_NO_MALLOC_CHECK" then setup_malloc_check () { : nothing