diff mbox series

tst-mxfast: Don't run with mcheck

Message ID 20210803170521.1195578-1-siddhesh@sourceware.org
State New
Headers show
Series tst-mxfast: Don't run with mcheck | expand

Commit Message

Siddhesh Poyarekar Aug. 3, 2021, 5:05 p.m. UTC
The test may not show predictable behaviour with -lmcheck since the
padding won't always guarantee fastbin usage.
---
I'll push this if there are no objections.

 malloc/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Siddhesh Poyarekar Aug. 5, 2021, 2:08 a.m. UTC | #1
On 8/3/21 10:35 PM, Siddhesh Poyarekar via Libc-alpha wrote:
> The test may not show predictable behaviour with -lmcheck since the
> padding won't always guarantee fastbin usage.
> ---
> I'll push this if there are no objections.


Pushed now.

Siddhesh
diff mbox series

Patch

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