From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hedgehog.birch.relay.mailchannels.net (hedgehog.birch.relay.mailchannels.net [23.83.209.81]) by sourceware.org (Postfix) with ESMTPS id 2FBAC3851C17; Thu, 24 Dec 2020 00:48:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 2FBAC3851C17 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=gotplt.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=siddhesh@gotplt.org X-Sender-Id: dreamhost|x-authsender|siddhesh@gotplt.org Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 29908342AEE; Thu, 24 Dec 2020 00:48:12 +0000 (UTC) Received: from pdx1-sub0-mail-a69.g.dreamhost.com (100-98-64-116.trex.outbound.svc.cluster.local [100.98.64.116]) (Authenticated sender: dreamhost) by relay.mailchannels.net (Postfix) with ESMTPA id 80DD4342A76; Thu, 24 Dec 2020 00:48:11 +0000 (UTC) X-Sender-Id: dreamhost|x-authsender|siddhesh@gotplt.org Received: from pdx1-sub0-mail-a69.g.dreamhost.com (pop.dreamhost.com [64.90.62.162]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384) by 0.0.0.0:2500 (trex/5.18.11); Thu, 24 Dec 2020 00:48:11 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: dreamhost|x-authsender|siddhesh@gotplt.org X-MailChannels-Auth-Id: dreamhost X-Company-Left: 78badde6598da8c3_1608770891784_4205012462 X-MC-Loop-Signature: 1608770891784:2145999663 X-MC-Ingress-Time: 1608770891784 Received: from pdx1-sub0-mail-a69.g.dreamhost.com (localhost [127.0.0.1]) by pdx1-sub0-mail-a69.g.dreamhost.com (Postfix) with ESMTP id 3DE2388312; Wed, 23 Dec 2020 16:48:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gotplt.org; h=subject:to :cc:references:from:message-id:date:mime-version:in-reply-to :content-type:content-transfer-encoding; s=gotplt.org; bh=uNo9f3 2eO5PutKyBYpRi4XVxYoM=; b=gPsd/x74TJVj8JjZsW3r9X8jKFxrexnR91x8uU d+lsS4VjliCi6MMmPWeUQO3ElFGG74ZibxpBt0l1HHNJVEOHMY4lzKIJHrexpn3f GkUKjOV1XbF1YgWEPmJlQNpk7zF/VREa7FAozjnrhnMOEU6g1Rh7/VoLKEta+tXg RRhac= Received: from [192.168.1.111] (unknown [1.186.101.110]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: siddhesh@gotplt.org) by pdx1-sub0-mail-a69.g.dreamhost.com (Postfix) with ESMTPSA id 08E9288573; Wed, 23 Dec 2020 16:48:07 -0800 (PST) Subject: Re: [PATCH 5/5] x86 long double: Add tests for pseudo normal numbers To: Adhemerval Zanella , Siddhesh Poyarekar , libc-alpha@sourceware.org Cc: fweimer@redhat.com, joseph@codesourcery.com References: <20201215141339.2684384-1-siddhesh@sourceware.org> <20201215141339.2684384-6-siddhesh@sourceware.org> <7bc285d3-c8ec-66ce-75a5-5acb84e78ab0@gotplt.org> X-DH-BACKEND: pdx1-sub0-mail-a69 From: Siddhesh Poyarekar Message-ID: <64af9985-2757-ec1c-ce67-6d375e5cc8f6@gotplt.org> Date: Thu, 24 Dec 2020 06:18:02 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_BARRACUDACENTRAL, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no 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: , X-List-Received-Date: Thu, 24 Dec 2020 00:48:16 -0000 On 12/23/20 11:14 PM, Adhemerval Zanella wrote: > I don't have a strong opinion, although below you can check it does not > really require too much tinkering to add a new tests for pseudo-normal zero. > The idea is to add the generic constants pseudo_xxx, define a new list using > a different struct, and issue ALL_RM_TESTS with RUN_TEST_LOOP_f_i_tg_u. Thanks for the example, I got caught up in the TEST_* macros and their conversion in python and took an unnecessary detour. I'll give this another shot. Thanks, Siddhesh