]> git.ipfire.org Git - thirdparty/git.git/commit
test-lib: check malloc debug LD_PRELOAD before using
authorJeff King <peff@peff.net>
Mon, 11 Nov 2024 07:01:34 +0000 (02:01 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 11 Nov 2024 22:44:28 +0000 (07:44 +0900)
commit02d900361c2b1e5d1fab006d2e71c8dc8bda8ca1
treeac875925712137e8035c45dda48fe90dd0535558
parent777489f9e09c8d0dd6b12f9d90de6376330577a2
test-lib: check malloc debug LD_PRELOAD before using

This fixes test failures across the suite on glibc platforms that don't
have libc_malloc_debug.so.0.

We added support for glibc's malloc checking routines long ago in
a731fa916e (Add MALLOC_CHECK_ and MALLOC_PERTURB_ libc env to the test
suite for detecting heap corruption, 2012-09-14). Back then we didn't
need to do any checks to see if the platform supported it. We were just
setting some environment variables which would either enable it or not.

That changed in 131b94a10a (test-lib.sh: Use GLIBC_TUNABLES instead of
MALLOC_CHECK_ on glibc >= 2.34, 2022-03-04). Now that glibc split this
out into libc_malloc_debug.so, we have to add it to LD_PRELOAD. We only
do that when we detect glibc, but it's possible to have glibc but not
the malloc debug library. In that case LD_PRELOAD will complain to
stderr, and tests which check for an empty stderr will fail.

You can work around this by setting TEST_NO_MALLOC_CHECK, which disables
the feature entirely. But it's not obvious to know you need to do that.
Instead, since this malloc checking is best-effort anyway, let's just
automatically disable it when the LD_PRELOAD appears not to work. We can
check it by running something simple that should work (and produce
nothing on stderr) like "git version".

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/test-lib.sh