[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r6224 - in /fsf/trunk/libc: ChangeLog math/libm-test.inc



Author: eglibc
Date: Fri May 23 00:04:19 2008
New Revision: 6224

Log:
Import glibc-mainline for 2008-05-23

Modified:
    fsf/trunk/libc/ChangeLog
    fsf/trunk/libc/math/libm-test.inc

Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Fri May 23 00:04:19 2008
@@ -1,3 +1,9 @@
+2008-02-20  Ryan S. Arnold  <rsa@xxxxxxxxxx>
+
+	* math/libm-test.inc (exp_test): Exclude expl(1000.0L) from
+	being executed on PowerPC as the expected result exceeds IBM
+	long double 128 __LDBL_MAX__.
+
 2008-05-21  Roland McGrath  <roland@xxxxxxxxxx>
 
 	* shlib-versions (sparc.*-.*-.*, sparc64.*-.*-.*): Add ABI lines.

Modified: fsf/trunk/libc/math/libm-test.inc
==============================================================================
--- fsf/trunk/libc/math/libm-test.inc (original)
+++ fsf/trunk/libc/math/libm-test.inc Fri May 23 00:04:19 2008
@@ -2511,8 +2511,8 @@
   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