From 505a964ae00eb6d24144d070cb7fe9fbab6d1393 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Tue, 3 Aug 2021 22:32:31 +0530 Subject: [PATCH] tst-mxfast: Don't run with mcheck The test may not show predictable behaviour with -lmcheck since the padding won't always guarantee fastbin usage. --- malloc/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/malloc/Makefile b/malloc/Makefile index 9b70831d38..63cd7c0734 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -93,7 +93,8 @@ tests-exclude-mcheck = tst-mallocstate \ tst-malloc-thread-fail \ tst-malloc-usable-tunables \ tst-malloc_info \ - tst-compathooks-off tst-compathooks-on + tst-compathooks-off tst-compathooks-on \ + tst-mxfast tests-mcheck = $(filter-out $(tests-exclude-mcheck) $(tests-static), $(tests)) endif