From patchwork Sun Jun 7 14:34:10 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 1304723 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=8.43.85.97; helo=sourceware.org; envelope-from=libc-alpha-bounces@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49fzRV6sZfz9sSf for ; Mon, 8 Jun 2020 00:34:30 +1000 (AEST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id A4771386F831; Sun, 7 Jun 2020 14:34:18 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from hera.aquilenet.fr (hera.aquilenet.fr [IPv6:2a0c:e300::1]) by sourceware.org (Postfix) with ESMTPS id 3847B386F831 for ; Sun, 7 Jun 2020 14:34:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 3847B386F831 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=samuel.thibault@ens-lyon.org Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 6D30316CE; Sun, 7 Jun 2020 16:34:14 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4BkNrPw2hOUM; Sun, 7 Jun 2020 16:34:13 +0200 (CEST) Received: from function.home (unknown [IPv6:2a01:cb19:956:1b00:9eb6:d0ff:fe88:c3c7]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 4CC881842; Sun, 7 Jun 2020 16:34:12 +0200 (CEST) Received: from samy by function.home with local (Exim 4.93) (envelope-from ) id 1jhwNG-00DiRE-Lq; Sun, 07 Jun 2020 16:34:10 +0200 From: Samuel Thibault To: libc-alpha@sourceware.org Subject: [hurd, commited 3/3] htl: Enable but XFAIL tst-flock2, tst-signal1, tst-signal2 Date: Sun, 7 Jun 2020 16:34:10 +0200 Message-Id: <20200607143410.3269029-4-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200607143410.3269029-1-samuel.thibault@ens-lyon.org> References: <20200607143410.3269029-1-samuel.thibault@ens-lyon.org> MIME-Version: 1.0 X-Spam-Status: No, score=-11.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, KAM_NUMSUBJECT, SPF_HELO_PASS, SPF_NEUTRAL, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: , Cc: commit-hurd@gnu.org Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" They need setpshared support. * nptl/tst-flock2.c, tst-signal1.c, tst-signal2.c: Move to... * sysdeps/pthread: ... here. * nptl/Makefile: Move corresponding tests references to... * sysdeps/pthread/Makefile: ... here. * sysdeps/mach/hurd/i386/Makefile (test-xfail-tst-flock2, test-xfail-tst-signal1, test-xfail-tst-signal2): Add. --- nptl/Makefile | 3 +-- sysdeps/mach/hurd/i386/Makefile | 3 +++ sysdeps/pthread/Makefile | 3 ++- {nptl => sysdeps/pthread}/tst-flock2.c | 0 {nptl => sysdeps/pthread}/tst-signal1.c | 0 {nptl => sysdeps/pthread}/tst-signal2.c | 0 6 files changed, 6 insertions(+), 3 deletions(-) rename {nptl => sysdeps/pthread}/tst-flock2.c (100%) rename {nptl => sysdeps/pthread}/tst-signal1.c (100%) rename {nptl => sysdeps/pthread}/tst-signal2.c (100%) diff --git a/nptl/Makefile b/nptl/Makefile index b1e60d303f..9b549454f1 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -282,8 +282,7 @@ tests = tst-attr2 tst-attr3 tst-default-attr \ tst-cancel16 tst-cancel17 tst-cancel20 tst-cancel21 tst-cancel24 \ tst-cancel-self tst-cancel-self-cancelstate \ tst-cleanup4 \ - tst-flock2 \ - tst-signal1 tst-signal2 tst-signal3 \ + tst-signal3 \ tst-exec4 tst-exec5 \ tst-stack2 tst-stack3 tst-stack4 \ tst-pthread-attr-affinity \ diff --git a/sysdeps/mach/hurd/i386/Makefile b/sysdeps/mach/hurd/i386/Makefile index f3682ba720..a67fe5d393 100644 --- a/sysdeps/mach/hurd/i386/Makefile +++ b/sysdeps/mach/hurd/i386/Makefile @@ -119,6 +119,9 @@ test-xfail-tst-barrier2 = yes test-xfail-tst-pututxline-cache = yes test-xfail-tst-pututxline-lockfail = yes test-xfail-tst-mallocfork2 = yes +test-xfail-tst-flock2 = yes +test-xfail-tst-signal1 = yes +test-xfail-tst-signal2 = yes # For bug 25522 # (setprotocol support) diff --git a/sysdeps/pthread/Makefile b/sysdeps/pthread/Makefile index fb78e55e27..5f9610ecbf 100644 --- a/sysdeps/pthread/Makefile +++ b/sysdeps/pthread/Makefile @@ -67,7 +67,7 @@ tests += tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \ tst-eintr2 tst-eintr3 tst-eintr4 tst-eintr5 \ tst-exec1 tst-exec2 tst-exec3 \ tst-exit1 tst-exit2 tst-exit3 \ - tst-flock1 \ + tst-flock1 tst-flock2 \ tst-fork1 tst-fork2 tst-fork3 tst-fork4 \ tst-atfork1 \ tst-getpid3 \ @@ -92,6 +92,7 @@ tests += tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \ tst-sem1 tst-sem2 tst-sem3 tst-sem4 tst-sem5 tst-sem6 tst-sem7 \ tst-sem8 tst-sem9 tst-sem10 tst-sem14 tst-sem15 tst-sem16 \ tst-setuid3 \ + tst-signal1 tst-signal2 \ tst-signal4 tst-signal5 tst-signal6 tst-signal8 \ tst-spin1 tst-spin2 tst-spin3 tst-spin4 \ tst-stack1 \ diff --git a/nptl/tst-flock2.c b/sysdeps/pthread/tst-flock2.c similarity index 100% rename from nptl/tst-flock2.c rename to sysdeps/pthread/tst-flock2.c diff --git a/nptl/tst-signal1.c b/sysdeps/pthread/tst-signal1.c similarity index 100% rename from nptl/tst-signal1.c rename to sysdeps/pthread/tst-signal1.c diff --git a/nptl/tst-signal2.c b/sysdeps/pthread/tst-signal2.c similarity index 100% rename from nptl/tst-signal2.c rename to sysdeps/pthread/tst-signal2.c