From f690b56979dea81340a397c1b5e44827a6fb06e7 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Tue, 2 Aug 2016 17:01:02 +0200 Subject: malloc: Run tests without calling mallopt [BZ #19469] The compiled tests no longer refer to the mallopt symbol from their main functions. (Some tests still call mallopt explicitly, which is fine.) --- test-skeleton.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test-skeleton.c') diff --git a/test-skeleton.c b/test-skeleton.c index d9bf989fa8..5a90c65826 100644 --- a/test-skeleton.c +++ b/test-skeleton.c @@ -346,8 +346,10 @@ main (int argc, char *argv[]) unsigned int timeoutfactor = 1; pid_t termpid; +#ifndef TEST_NO_MALLOPT /* Make uses of freed and uninitialized memory known. */ mallopt (M_PERTURB, 42); +#endif #ifdef STDOUT_UNBUFFERED setbuf (stdout, NULL); -- cgit v1.2.1