From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2206) id 3F4BD3983C61; Thu, 5 Aug 2021 02:07:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3F4BD3983C61 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Siddhesh Poyarekar To: glibc-cvs@sourceware.org Subject: [glibc] tst-mxfast: Don't run with mcheck X-Act-Checkin: glibc X-Git-Author: Siddhesh Poyarekar X-Git-Refname: refs/heads/master X-Git-Oldrev: 3d9a539ee66165148b2b9e08b46e03a5f58f65d2 X-Git-Newrev: 505a964ae00eb6d24144d070cb7fe9fbab6d1393 Message-Id: <20210805020742.3F4BD3983C61@sourceware.org> Date: Thu, 5 Aug 2021 02:07:42 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Aug 2021 02:07:42 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=505a964ae00eb6d24144d070cb7fe9fbab6d1393 commit 505a964ae00eb6d24144d070cb7fe9fbab6d1393 Author: Siddhesh Poyarekar Date: Tue Aug 3 22:32:31 2021 +0530 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. Diff: --- 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