diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-03-21 12:17:26 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-03-21 12:17:26 +0000 |
commit | 0cb7efc517a293417880f02e2991483b7ce1e3f9 (patch) | |
tree | 6c0c2e224abce394aa9713bf8de43d4ff8012bdb /math/libm-test.inc | |
parent | 2460d3aa21f04cdf28497683bd3e29183189f779 (diff) | |
download | glibc-0cb7efc517a293417880f02e2991483b7ce1e3f9.tar.gz glibc-0cb7efc517a293417880f02e2991483b7ce1e3f9.tar.xz glibc-0cb7efc517a293417880f02e2991483b7ce1e3f9.zip |
Fix missing exp2 overflow exception (bug 13871).
Diffstat (limited to 'math/libm-test.inc')
-rw-r--r-- | math/libm-test.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc index 64d12a5786..afc6f55d7b 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -3108,8 +3108,7 @@ exp2_test (void) TEST_f_f (exp2, 10, 1024); TEST_f_f (exp2, -1, 0.5); - /* Bug 13871: OVERFLOW exception may be missing. */ - TEST_f_f (exp2, 1e6, plus_infty, OVERFLOW_EXCEPTION_OK); + TEST_f_f (exp2, 1e6, plus_infty, OVERFLOW_EXCEPTION); TEST_f_f (exp2, -1e6, 0); TEST_f_f (exp2, 0.75L, 1.68179283050742908606225095246642979L); |