From: Joseph Myers Date: Sun, 8 Apr 2012 22:46:49 +0000 (+0000) Subject: Do not allow overflow exception on exp underflow test (bug 13705). X-Git-Tag: glibc-2.16-tps~631 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2de7579f257386ba5c28dfca94fa8aef143b4e0;p=platform%2Fupstream%2Fglibc.git Do not allow overflow exception on exp underflow test (bug 13705). --- diff --git a/ChangeLog b/ChangeLog index 85de3bd772..6154bb4da7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-04-08 Joseph Myers + + [BZ #13705] + * math/libm-test.inc (exp_test): Do not allow overflow exception + on underflow test. + 2012-04-08 Aurelien Jarno [BZ #13705] diff --git a/math/libm-test.inc b/math/libm-test.inc index 32bce45140..35d014b72f 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -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); }