From: Ramsay Jones Date: Sat, 6 Oct 2012 17:33:08 +0000 (+0100) Subject: MALLOC_CHECK: Allow checking to be disabled from config.mak X-Git-Tag: v1.8.0-rc2~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1266686b97d9c1783b89911a938bf992d8292bc6;p=git.git MALLOC_CHECK: Allow checking to be disabled from config.mak The malloc checks can be disabled using the TEST_NO_MALLOC_CHECK variable, either from the environment or command line of an 'make test' invocation. In order to allow the malloc checks to be disabled from the 'config.mak' file, we add TEST_NO_MALLOC_CHECK to the environment using an export directive. Signed-off-by: Ramsay Jones Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 84136065b..f69979e39 100644 --- a/Makefile +++ b/Makefile @@ -2636,6 +2636,7 @@ bin-wrappers/%: wrap-for-bin.sh # with that. export NO_SVN_TESTS +export TEST_NO_MALLOC_CHECK ### Testing rules