]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix to exclude test when IBM 128-bit long double is being used in order to avoid...
authorRyan S. Arnold <rsa@us.ibm.com>
Fri, 24 Jul 2009 15:21:04 +0000 (10:21 -0500)
committerRyan Arnold <ryanarn@etna.rchland.ibm.com>
Fri, 24 Jul 2009 20:10:54 +0000 (15:10 -0500)
commit 8fb0af98d8fcbdad7a982b41e6b0fe65b7d3b45d
Author: Ulrich Drepper <drepper@redhat.com>
Date:   Thu May 22 19:59:10 2008 +0000

Work around braindead IBM128 long double format.

math/libm-test.inc

index 267d6077e1519aca110c1c84d304fbbdd7635250..6d9a3ec6cbe488618000569104be7fe74e65729a 100644 (file)
@@ -2511,8 +2511,8 @@ exp_test (void)
   TEST_f_f (exp, 0.75L, 2.11700001661267466854536981983709561L);
   TEST_f_f (exp, 50.0L, 5184705528587072464087.45332293348538L);
   TEST_f_f (exp, 88.72269439697265625L, 3.40233126623160774937554134772290447915e38L);
-#ifdef TEST_LDOUBLE
-  /* The result can only be represented in long double.  */
+#if defined TEST_LDOUBLE && __LDBL_MAX_EXP__ > 1024
+  /* The result can only be represented in sane long double.  */
   TEST_f_f (exp, 1000.0L, 0.197007111401704699388887935224332313e435L);
 #endif