From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 71370 invoked by alias); 14 Nov 2019 18:11:59 -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 71356 invoked by uid 89); 14 Nov 2019 18:11:59 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.2 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.1 spammy=H*M:8d6e X-HELO: mx0a-001b2d01.pphosted.com Subject: Re: [PATCH v2 17/30] ldbl-128ibm-compat: Add tests for strfmon and strfmon_l To: "Gabriel F. T. Gomes" , libc-alpha@sourceware.org References: <20191025153410.15405-1-gabriel@inconstante.net.br> <20191025153410.15405-18-gabriel@inconstante.net.br> From: Paul E Murphy Message-ID: Date: Thu, 14 Nov 2019 18:11:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.1.0 MIME-Version: 1.0 In-Reply-To: <20191025153410.15405-18-gabriel@inconstante.net.br> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2019-11/txt/msg00562.txt.bz2 On 10/25/19 10:33 AM, Gabriel F. T. Gomes wrote: > From: "Gabriel F. T. Gomes" > > No changes since v1. > > -- 8< -- > This patch adds elementary tests to check that strfmon and strfmon_l > correctly evaluate long double values with IBM Extended Precision and > IEEE binary128 format. > > Tested for powerpc64le. > --- > sysdeps/ieee754/ldbl-128ibm-compat/Makefile | 6 ++ > .../ldbl-128ibm-compat/test-strfmon-ibm128.c | 1 + > .../ldbl-128ibm-compat/test-strfmon-ieee128.c | 1 + > .../test-strfmon-ldbl-compat.c | 59 +++++++++++++++++++ > 4 files changed, 67 insertions(+) > create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ibm128.c > create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ieee128.c > create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ldbl-compat.c > > diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/Makefile b/sysdeps/ieee754/ldbl-128ibm-compat/Makefile > diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ibm128.c b/sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ibm128.c > diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ieee128.c b/sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ieee128.c > diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ldbl-compat.c b/sysdeps/ieee754/ldbl-128ibm-compat/test-strfmon-ldbl-compat.c OK