diff options
Diffstat (limited to 'math/libm-test.c')
-rw-r--r-- | math/libm-test.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/math/libm-test.c b/math/libm-test.c index da1de8385f..2075adcb59 100644 --- a/math/libm-test.c +++ b/math/libm-test.c @@ -1114,6 +1114,9 @@ exp2_test (void) check_isinfp ("exp2 (+inf) == +inf", FUNC(exp2) (plus_infty)); check ("exp2 (-inf) == 0", FUNC(exp2) (minus_infty), 0); check ("exp2 (10) == 1024", FUNC(exp2) (10), 1024); + check ("exp2 (-1) == 0.5", FUNC(exp2) (-1), 0.5); + check_isinfp ("exp2 (1e6) == +inf", FUNC(exp2) (1e6)); + check ("exp2 (-1e6) == 0", FUNC(exp2) (-1e6), 0); } |