From: Joseph Myers Date: Sat, 11 May 2013 11:10:31 +0000 (+0000) Subject: Make fma and nextafter tests use max_value instead of fltmax. X-Git-Tag: glibc-2.18~290 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8329e4da356686583278dd2664f005a7acebb61b;p=platform%2Fupstream%2Fglibc.git Make fma and nextafter tests use max_value instead of fltmax. --- diff --git a/ChangeLog b/ChangeLog index 806099e..2027bd6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2013-05-11 Joseph Myers + * math/libm-test.inc (fma_test): Use max_value instead of local + variable fltmax. + (nextafter_test): Likewise. + * math/libm-test.inc (acos_towardzero_test_data): New variable. (acos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f. (acos_downward_test_data): New variable. diff --git a/math/libm-test.inc b/math/libm-test.inc index e736cdd..2d4006f 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -8220,12 +8220,10 @@ fma_test (void) TEST_fff_f (fma, 1.25L, 0.75L, 0.0625L, 1.0L); - FLOAT fltmax = CHOOSE (LDBL_MAX, DBL_MAX, FLT_MAX, - LDBL_MAX, DBL_MAX, FLT_MAX); - TEST_fff_f (fma, -fltmax, -fltmax, minus_infty, minus_infty); - TEST_fff_f (fma, fltmax / 2, fltmax / 2, minus_infty, minus_infty); - TEST_fff_f (fma, -fltmax, fltmax, plus_infty, plus_infty); - TEST_fff_f (fma, fltmax / 2, -fltmax / 4, plus_infty, plus_infty); + TEST_fff_f (fma, -max_value, -max_value, minus_infty, minus_infty); + TEST_fff_f (fma, max_value / 2, max_value / 2, minus_infty, minus_infty); + TEST_fff_f (fma, -max_value, max_value, plus_infty, plus_infty); + TEST_fff_f (fma, max_value / 2, -max_value / 4, plus_infty, plus_infty); TEST_fff_f (fma, plus_infty, 4, plus_infty, plus_infty); TEST_fff_f (fma, 2, minus_infty, minus_infty, minus_infty); TEST_fff_f (fma, minus_infty, minus_infty, plus_infty, plus_infty); @@ -11306,10 +11304,8 @@ nextafter_test (void) TEST_ff_f (nextafter, 1.1L, qnan_value, qnan_value); TEST_ff_f (nextafter, qnan_value, qnan_value, qnan_value); - FLOAT fltmax = CHOOSE (LDBL_MAX, DBL_MAX, FLT_MAX, - LDBL_MAX, DBL_MAX, FLT_MAX); - TEST_ff_f (nextafter, fltmax, plus_infty, plus_infty, OVERFLOW_EXCEPTION); - TEST_ff_f (nextafter, -fltmax, minus_infty, minus_infty, OVERFLOW_EXCEPTION); + TEST_ff_f (nextafter, max_value, plus_infty, plus_infty, OVERFLOW_EXCEPTION); + TEST_ff_f (nextafter, -max_value, minus_infty, minus_infty, OVERFLOW_EXCEPTION); #ifdef TEST_LDOUBLE // XXX Enable once gcc is fixed.