From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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-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-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy= 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= Return-Path: 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 13:10:00 -0000 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 X-SW-Source: 2018-07/txt/msg00371.txt.bz2 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.