diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-08-03 22:32:31 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-08-05 07:36:55 +0530 |
commit | 505a964ae00eb6d24144d070cb7fe9fbab6d1393 (patch) | |
tree | 73acd1951c053075a13d7db316a61ba5889772f6 /malloc | |
parent | 3d9a539ee66165148b2b9e08b46e03a5f58f65d2 (diff) | |
download | glibc-505a964ae00eb6d24144d070cb7fe9fbab6d1393.tar glibc-505a964ae00eb6d24144d070cb7fe9fbab6d1393.tar.gz glibc-505a964ae00eb6d24144d070cb7fe9fbab6d1393.tar.bz2 glibc-505a964ae00eb6d24144d070cb7fe9fbab6d1393.zip |
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.
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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 |