aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-04-08 22:46:49 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-04-08 22:46:49 +0000
commitd2de7579f257386ba5c28dfca94fa8aef143b4e0 (patch)
treef1d71152dd830b22595581625f2af15f47dd6b58 /math
parentf77f12320635155da728a3c1adb75ff9914cf686 (diff)
downloadglibc-d2de7579f257386ba5c28dfca94fa8aef143b4e0.zip
glibc-d2de7579f257386ba5c28dfca94fa8aef143b4e0.tar.gz
glibc-d2de7579f257386ba5c28dfca94fa8aef143b4e0.tar.bz2
Do not allow overflow exception on exp underflow test (bug 13705).
Diffstat (limited to 'math')
-rw-r--r--math/libm-test.inc3
1 files changed, 1 insertions, 2 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc
index 32bce45..35d014b 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);
}