diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-01-13 09:08:07 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-01-13 23:14:49 +0530 |
commit | cf1290064598def8dfeddec3d86d98495aee1fba (patch) | |
tree | 5baed43466b12182ed20038c0eac63c462394a49 /math/libm-test-isinf.inc | |
parent | efbbd9c33adfa843d65860b1b02adebb8ecb57ce (diff) | |
download | glibc-cf1290064598def8dfeddec3d86d98495aee1fba.zip glibc-cf1290064598def8dfeddec3d86d98495aee1fba.tar.gz glibc-cf1290064598def8dfeddec3d86d98495aee1fba.tar.bz2 |
Use the right argument code in unnormal tests
Use the right argument code (j) in the unnormal tests and cast inputs
from the ieee_long_double_shape_type struct to Float64x to properly
test it.
Diffstat (limited to 'math/libm-test-isinf.inc')
-rw-r--r-- | math/libm-test-isinf.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/math/libm-test-isinf.inc b/math/libm-test-isinf.inc index 7d4b27a..7eeb33c 100644 --- a/math/libm-test-isinf.inc +++ b/math/libm-test-isinf.inc @@ -38,13 +38,13 @@ static const struct test_f_i_data isinf_test_data[] = }; #if TEST_COND_intel96 -static const struct test_f_i_data_u isinf_test_data_u[] = +static const struct test_j_i_data_u isinf_test_data_u[] = { - TEST_f_b (isinf, pseudo_zero, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), - TEST_f_b (isinf, pseudo_inf, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), - TEST_f_b (isinf, pseudo_qnan, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), - TEST_f_b (isinf, pseudo_snan, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), - TEST_f_b (isinf, pseudo_unnormal, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), + TEST_j_b (isinf, pseudo_zero, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), + TEST_j_b (isinf, pseudo_inf, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), + TEST_j_b (isinf, pseudo_qnan, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), + TEST_j_b (isinf, pseudo_snan, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), + TEST_j_b (isinf, pseudo_unnormal, 0, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), }; #endif @@ -53,7 +53,7 @@ isinf_test (void) { ALL_RM_TEST (isinf, 1, isinf_test_data, RUN_TEST_LOOP_f_b_tg, END); #if TEST_COND_intel96 - ALL_RM_TEST (isinf, 1, isinf_test_data_u, RUN_TEST_LOOP_f_b_tg_u, END); + ALL_RM_TEST (isinf, 1, isinf_test_data_u, RUN_TEST_LOOP_j_b_tg_u, END); #endif } |