From patchwork Mon Feb 10 01:05:02 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 1235587 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=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-109342-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha1 header.s=default header.b=iQckyvNV; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48G75T0Wwdz9sRY for ; Mon, 10 Feb 2020 12:06:20 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; q=dns; s= default; b=kZkWdp3/hrO6nIUsRa4IZsPbA5//asdYfyqmFYJHjRkgh6ftZarPZ CwrN4Oa5SzNJ6Pd1pqwuT4yGnK/01216pNYILo8E6aUxfO+orj9+N92A/hyON/Qy bBzwXX8N4rLEVMJ1Tdx4pKJ/VKVYaxdWKKv5RddzGZ7DrFAn6uNoC4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; s=default; bh=sOKEsJFLEk+IJwxYeCrIz9KXtCY=; b=iQckyvNVQY2+gigw2oHIdn73LVzs OWPjJf0yvHJkjALUor4PecY37ngsb21M7dz3+Ct/0g4DeIM7eXoa6dWz4278xBLy IfygrHwZlKLcwtAEFHzFrj8x19+jz8GSuY0xZ54GOytDcQYU5jbUjEHLaDjs/+zg D6YftRiDWrEDXVE= Received: (qmail 96585 invoked by alias); 10 Feb 2020 01:05:22 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 96404 invoked by uid 89); 10 Feb 2020 01:05:21 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.0 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL autolearn=ham version=3.3.1 spammy= X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault , commit-hurd@gnu.org Subject: [hurd, commited 04/10] pthread: Move key tests from nptl to sysdeps/pthread Date: Mon, 10 Feb 2020 02:05:02 +0100 Message-Id: <20200210010508.428251-4-samuel.thibault@ens-lyon.org> In-Reply-To: <20200210010508.428251-1-samuel.thibault@ens-lyon.org> References: <20200210010508.428251-1-samuel.thibault@ens-lyon.org> MIME-Version: 1.0 So they can be checked with htl too. --- nptl/Makefile | 1 - sysdeps/pthread/Makefile | 1 + {nptl => sysdeps/pthread}/tst-key1.c | 0 {nptl => sysdeps/pthread}/tst-key2.c | 0 {nptl => sysdeps/pthread}/tst-key3.c | 0 {nptl => sysdeps/pthread}/tst-key4.c | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename {nptl => sysdeps/pthread}/tst-key1.c (100%) rename {nptl => sysdeps/pthread}/tst-key2.c (100%) rename {nptl => sysdeps/pthread}/tst-key3.c (100%) rename {nptl => sysdeps/pthread}/tst-key4.c (100%) diff --git a/nptl/Makefile b/nptl/Makefile index 3ad3024a39..8e53ff6a49 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -249,7 +249,6 @@ tests = tst-attr2 tst-attr3 tst-default-attr \ tst-rwlock9 tst-rwlock10 tst-rwlock11 tst-rwlock12 \ tst-rwlock14 tst-rwlock15 tst-rwlock17 tst-rwlock18 \ tst-once5 \ - tst-key1 tst-key2 tst-key3 tst-key4 \ 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-sem17 \ diff --git a/sysdeps/pthread/Makefile b/sysdeps/pthread/Makefile index cceaa91837..8143eeb1ad 100644 --- a/sysdeps/pthread/Makefile +++ b/sysdeps/pthread/Makefile @@ -50,6 +50,7 @@ tests += tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \ tst-cond14 tst-cond15 tst-cond16 tst-cond17 tst-cond18 tst-cond19 \ tst-cond23 tst-cond24 tst-cond25 \ tst-cond-except \ + tst-key1 tst-key2 tst-key3 tst-key4 \ tst-mutex1 tst-mutex2 tst-mutex3 tst-mutex4 tst-mutex6 tst-mutex10 \ tst-once1 tst-once2 tst-once3 tst-once4 \ tst-rwlock1 tst-rwlock4 tst-rwlock5 tst-rwlock13 tst-rwlock16 \ diff --git a/nptl/tst-key1.c b/sysdeps/pthread/tst-key1.c similarity index 100% rename from nptl/tst-key1.c rename to sysdeps/pthread/tst-key1.c diff --git a/nptl/tst-key2.c b/sysdeps/pthread/tst-key2.c similarity index 100% rename from nptl/tst-key2.c rename to sysdeps/pthread/tst-key2.c diff --git a/nptl/tst-key3.c b/sysdeps/pthread/tst-key3.c similarity index 100% rename from nptl/tst-key3.c rename to sysdeps/pthread/tst-key3.c diff --git a/nptl/tst-key4.c b/sysdeps/pthread/tst-key4.c similarity index 100% rename from nptl/tst-key4.c rename to sysdeps/pthread/tst-key4.c