From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1792) id 12943385B50A; Fri, 24 Feb 2023 19:28:55 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 12943385B50A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1677266935; bh=CkQgDQhY+vJNeR1NB1zci4AbZsCmflK9vdc2AEGwezE=; h=From:To:Subject:Date:From; b=narXJk0pKlS0Goluae1VjsqV7Y0FuvH8vm88SJyggLRHDYlo57nrxCxE1GjRKwml8 HelJaM8n0qoww45zf+3ljnavLOU3CzZ7hJuWqk/xTsdtP08isr0JIm0HelF05QgQta Svml8fs9jKGX2aJGKlGVtdc7ycDPKhjrDcQY06vU= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Samuel Thibault To: glibc-cvs@sourceware.org Subject: [glibc] hurd: Mark RLIMIT_AS tests as unsupported X-Act-Checkin: glibc X-Git-Author: Samuel Thibault X-Git-Refname: refs/heads/master X-Git-Oldrev: 2ce48fbd5a17b59dd7326f4533e81e65c1eb5378 X-Git-Newrev: 2352b407c928fbff8674cea11060ee661508331f Message-Id: <20230224192855.12943385B50A@sourceware.org> Date: Fri, 24 Feb 2023 19:28:55 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=2352b407c928fbff8674cea11060ee661508331f commit 2352b407c928fbff8674cea11060ee661508331f Author: Samuel Thibault Date: Fri Feb 24 20:28:15 2023 +0100 hurd: Mark RLIMIT_AS tests as unsupported Otherwise they put the system on its knees. Diff: --- sysdeps/mach/hurd/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index d0e3da03ca..d0f759afdd 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -289,3 +289,14 @@ check-execstack-xfail += ld.so libc.so libpthread.so # We always create a thread for signals test-xfail-tst-single_threaded-pthread-static = yes endif + +# For bug 30166 +# (missing RLIMIT_AS support) +ifeq ($(subdir),malloc) +tests-unsupported += tst-malloc-thread-fail +tests-unsupported += tst-malloc-thread-fail-malloc-check +tests-unsupported += tst-malloc-thread-fail-mcheck +tests-unsupported += tst-malloc-thread-fail-malloc-hugetlb1 +tests-unsupported += tst-malloc-thread-fail-malloc-hugetlb2 +tests-unsupported += tst-dynarray-fail +endif