From: John David Anglin Date: Fri, 19 Jan 2018 00:22:33 +0000 (+0000) Subject: pr52451.c (main): Skip long double test on hppa*-*-hpux*. X-Git-Tag: upstream/12.2.0~33944 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=502a18ca457465a358e9a595fc9071a5f065fb4a;p=platform%2Fupstream%2Fgcc.git pr52451.c (main): Skip long double test on hppa*-*-hpux*. * gcc.dg/torture/pr52451.c (main): Skip long double test on hppa*-*-hpux*. From-SVN: r256871 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2e24761..1148705 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-01-18 John David Anglin + + * gcc.dg/torture/pr52451.c (main): Skip long double test on + hppa*-*-hpux*. + 2018-01-18 Jakub Jelinek PR ipa/83619 diff --git a/gcc/testsuite/gcc.dg/torture/pr52451.c b/gcc/testsuite/gcc.dg/torture/pr52451.c index 81a3d4d..1a2ece9 100644 --- a/gcc/testsuite/gcc.dg/torture/pr52451.c +++ b/gcc/testsuite/gcc.dg/torture/pr52451.c @@ -49,7 +49,11 @@ main (void) TEST (float, f); TEST (double, ); +#if !defined(__hppa__) || !defined(__hpux__) + /* Long double on hppa*-hpux* is implemented in software and the routines + in fenv.h do not support it. */ TEST (long double, l); +#endif return 0; }