diff options
Diffstat (limited to 'math/libm-test.inc')
-rw-r--r-- | math/libm-test.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc index aaa01488ec..698172080c 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -1799,6 +1799,8 @@ static const struct test_f_f_data acos_test_data[] = TEST_f_f (acos, minus_infty, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), TEST_f_f (acos, qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_f_f (acos, -qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), + TEST_f_f (acos, snan_value, qnan_value, INVALID_EXCEPTION), + TEST_f_f (acos, -snan_value, qnan_value, INVALID_EXCEPTION), /* |x| > 1: */ TEST_f_f (acos, 1.125L, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), |