tst-mxfast: Don't run with mcheck

Message ID 20210803170521.1195578-1-siddhesh@sourceware.org
State Committed
Commit 505a964ae00eb6d24144d070cb7fe9fbab6d1393
Headers
Series tst-mxfast: Don't run with mcheck |

Checks

Context Check Description
dj/TryBot-apply_patch success Patch applied to master at the time it was sent
dj/TryBot-32bit success Build for i686

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
  

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