From patchwork Fri Feb 24 19:29:06 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 65618 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id D79CD38515D0 for ; Fri, 24 Feb 2023 19:29:22 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from sonata.ens-lyon.org (domu-toccata.ens-lyon.fr [140.77.166.138]) by sourceware.org (Postfix) with ESMTPS id C7DF3385B507 for ; Fri, 24 Feb 2023 19:29:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C7DF3385B507 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=bounce.ens-lyon.org Received: from localhost (localhost [127.0.0.1]) by sonata.ens-lyon.org (Postfix) with ESMTP id A06F82015E; Fri, 24 Feb 2023 20:29:08 +0100 (CET) Received: from sonata.ens-lyon.org ([127.0.0.1]) by localhost (sonata.ens-lyon.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7Ftdny63CHLZ; Fri, 24 Feb 2023 20:29:08 +0100 (CET) Received: from begin (lfbn-bor-1-1163-184.w92-158.abo.wanadoo.fr [92.158.138.184]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by sonata.ens-lyon.org (Postfix) with ESMTPSA id 9C1162015C; Fri, 24 Feb 2023 20:29:07 +0100 (CET) Received: from samy by begin with local (Exim 4.96) (envelope-from ) id 1pVdkh-000dpi-0J; Fri, 24 Feb 2023 20:29:07 +0100 From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault , commit-hurd@gnu.org Subject: [hurd,commited] hurd: Mark RLIMIT_AS tests as unsupported Date: Fri, 24 Feb 2023 20:29:06 +0100 Message-Id: <20230224192906.153111-1-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_PASS, TXREP, URIBL_BLACK autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org Sender: "Libc-alpha" Otherwise they put the system on its knees. --- 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