]> sourceware.org Git - glibc.git/commitdiff
Do not allow overflow exception on exp underflow test (bug 13705).
authorJoseph Myers <joseph@codesourcery.com>
Sun, 8 Apr 2012 22:46:49 +0000 (22:46 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Sun, 8 Apr 2012 22:46:49 +0000 (22:46 +0000)
ChangeLog
math/libm-test.inc

index 85de3bd772b276d7d6fc3e7a9e95991217e0bbe0..6154bb4da7c14014bc40198f709d7276731e4311 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-04-08  Joseph Myers  <joseph@codesourcery.com>
+
+       [BZ #13705]
+       * math/libm-test.inc (exp_test): Do not allow overflow exception
+       on underflow test.
+
 2012-04-08  Aurelien Jarno  <aurelien@aurel32.net>
 
        [BZ #13705]
index 32bce45140acc87c15e234da752b7b30ee23a17b..35d014b72f5661ef36770ea3e71e8755e9a9a133 100644 (file)
@@ -3003,8 +3003,7 @@ exp_test (void)
 
   /* Bug 13922: OVERFLOW exception may be missing.  */
   TEST_f_f (exp, max_value, plus_infty, OVERFLOW_EXCEPTION_OK);
-  /* Bug 13705: spurious OVERFLOW exception may be present.  */
-  TEST_f_f (exp, -max_value, 0, OVERFLOW_EXCEPTION_OK);
+  TEST_f_f (exp, -max_value, 0);
 
   END (exp);
 }
This page took 0.30091 seconds and 5 git commands to generate.