MALLOC_CHECK: enable it, unless disabled explicitly
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>
Wed, 26 Sep 2012 20:16:39 +0000 (22:16 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 27 Sep 2012 06:39:13 +0000 (23:39 -0700)
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 <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/perf/perf-lib.sh
t/test-lib.sh

index 1d0bb9d0173af5908b46285dbd574642fb20a22e..a816fbcb7618bb8cdbf1f74a4fd2295923c02ea3 100644 (file)
@@ -42,7 +42,7 @@ else
 fi
 
 TEST_NO_CREATE_REPO=t
-TEST_NO_MALLOC_=t
+TEST_NO_MALLOC_CHECK=t
 
 . ../test-lib.sh
 
index aad46066adf0021b721bb3a2e235e2b012f13422..9ecbc409a2d42bb047721bdc72574752ba5c31f3 100644 (file)
@@ -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