From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 352593857707; Tue, 30 May 2023 22:01:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 352593857707 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1685484068; bh=/eJ2NJAmF3PifP0KlR+t0PqgnJ+B2F9Omqle1e0v0xo=; h=From:To:Subject:Date:From; b=Ig6cIpF0fGlapuhoceFrqyqwCV6KHn/2z9v2CuMw80FAjIX1dEtyawjRddksJCR0Z Za6bNqxFZGhGmXol1blBqTswrBNuaD1+nkZDT1dV5eQmgD6FVpFgrqiLLr0pteySLg GTZWKkBEv8/lqb5/ni7wRvzh3GdE0lm6m6fNUNes= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Alexandre Oliva To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-9668] [libstdc++] [testsuite] xfail to_chars/long_double on x86-vxworks X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: 987b24420bc8ce95830992d36a1304e585be79b3 X-Git-Newrev: b99118d46f4c35c355f99983809cfccc8cd67d7f Message-Id: <20230530220108.352593857707@sourceware.org> Date: Tue, 30 May 2023 22:01:08 +0000 (GMT) List-Id: https://gcc.gnu.org/g:b99118d46f4c35c355f99983809cfccc8cd67d7f commit r12-9668-gb99118d46f4c35c355f99983809cfccc8cd67d7f Author: Alexandre Oliva Date: Thu May 25 05:57:11 2023 -0300 [libstdc++] [testsuite] xfail to_chars/long_double on x86-vxworks Just as on aarch64, x86's wider long double experiences loss of precision with from_chars implemented in terms of double. Expect the execution fail. for libstdc++-v3/ChangeLog * testsuite/20_util/to_chars/long_double.cc: Expect execution fail on x86-vxworks. (cherry picked from commit 7daa166fe89fca4ff1baa063c00a5a690f7e462f) Diff: --- libstdc++-v3/testsuite/20_util/to_chars/long_double.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/testsuite/20_util/to_chars/long_double.cc b/libstdc++-v3/testsuite/20_util/to_chars/long_double.cc index 52e382e76a1..01bfec79bb1 100644 --- a/libstdc++-v3/testsuite/20_util/to_chars/long_double.cc +++ b/libstdc++-v3/testsuite/20_util/to_chars/long_double.cc @@ -36,7 +36,7 @@ // On systems that use double-precision from_chars for long double, // this is expected to fail. -// { dg-xfail-run-if "from_chars limited to double-precision" { aarch64-*-vxworks* } } +// { dg-xfail-run-if "from_chars limited to double-precision" { aarch64-*-vxworks* i*86-*-vxworks* } } // { dg-require-effective-target ieee_floats } // { dg-require-effective-target size32plus }