From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.2 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.1 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 dcvr.yhbt.net (Postfix) with ESMTPS id 480CB1F85E for ; Fri, 13 Jul 2018 13:10:33 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=w3EjnpS8lqN0z3w8 NEQx7DMe1I2eRPnvGtA0dO21klNLHCSELuswX4Gx0571yvPHFxLfVhQ+eKQ4PugT woHaWUqQLIX+75mWXXI4vJEpXd6Ubez0dKCzJl8sWZWi0wVFeK0mh7OdPquSP705 ZHlgOMsG+8VgDZq/dLxVkH6vo4Y= 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:subject:to:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=KIvuGVS/80AifpkAiQX5gM xZUQk=; b=APVKuRYRT12hULYdWuXWbUNd8LzOlAQnicntj5k/Gbp4SQPfB/vQD1 TCiduER+A9RUNTNZJrhGfOY0pXQOs5J2ZINLVWugnn+p8azGaNgvHOkrMdlTenj5 SJVFgr5IaG/Gg2tc1QdEcT6HddMypgRSglJIuxGGawwdKjQjhmN1g= Received: (qmail 8751 invoked by alias); 13 Jul 2018 13:10:30 -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 Received: (qmail 8739 invoked by uid 89); 13 Jul 2018 13:10:30 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mail-ua0-f194.google.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=subject:to:references:from:openpgp:autocrypt:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=27utfqRjCU1DIO6bvWhEeomLXunWGzkNX5rLOT0feTA=; b=QTfPgKonp8MgMxrsVNYA6hlN5afuzPt86ASBduYDK+oL7ddwW9lGFA9mSc5JBiN40k K4e0njGUCAT1AUKTIz7sjv45+cQYKbDN7LIA62hkjheAlfZ6SpNiIOao3k2I6Rg1fc68 bAvVryiaaHPph7eLloM2i5KHcOdrUs/CeqjLE= Subject: Re: [PATCH v8 7/8] nptl: Add test cases for ISO C11 threads To: Florian Weimer , libc-alpha@sourceware.org References: <1517591084-11347-1-git-send-email-adhemerval.zanella@linaro.org> <1517591084-11347-8-git-send-email-adhemerval.zanella@linaro.org> <4a152fab-0950-bc8a-a0a7-85e0e2472da8@redhat.com> From: Adhemerval Zanella Openpgp: preference=signencrypt Message-ID: <5c33245e-c052-f4c9-716c-ded49f14924d@linaro.org> Date: Fri, 13 Jul 2018 10:10:25 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <4a152fab-0950-bc8a-a0a7-85e0e2472da8@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit On 13/07/2018 06:31, Florian Weimer wrote: > On 02/02/2018 06:04 PM, Adhemerval Zanella wrote: >> This patch adds to testsuite new test cases to test all new introduced >> C11 threads functions, types and macros are tested. > > Somewhere, there should be a test that the types (thrd_t, once_flag, mtx_t, cnd_t) have identicial size and alignment as the POSIX types, and that TSS_DTOR_ITERATIONS equals PTHREAD_DESTRUCTOR_ITERATIONS. > > It should probably be a separate test, to avoid including in the tests. Right, I will work on a extra test for this.