diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-03-17 15:46:29 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-03-19 11:45:44 -0300 |
commit | 1c15464ca05f36db5c582856d3770d5e8bde9d61 (patch) | |
tree | 5278adbefa85c883801987d2c392306890859391 /math/libm-test-tanh.inc | |
parent | a8ce8222343933d28665e1687ab8862c0664d9f7 (diff) | |
download | glibc-1c15464ca05f36db5c582856d3770d5e8bde9d61.zip glibc-1c15464ca05f36db5c582856d3770d5e8bde9d61.tar.gz glibc-1c15464ca05f36db5c582856d3770d5e8bde9d61.tar.bz2 |
math: Remove inline math tests
With mathinline removal there is no need to keep building and testing
inline math tests.
The gen-libm-tests.py support to generate ULP_I_* is removed and all
libm-test-ulps files are updated to longer have the
i{float,double,ldouble} entries. The support for no-test-inline is
also removed from both gen-auto-libm-tests and the
auto-libm-test-out-* were regenerated.
Checked on x86_64-linux-gnu and i686-linux-gnu.
Diffstat (limited to 'math/libm-test-tanh.inc')
-rw-r--r-- | math/libm-test-tanh.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/libm-test-tanh.inc b/math/libm-test-tanh.inc index 7c49e38..e7e0338 100644 --- a/math/libm-test-tanh.inc +++ b/math/libm-test-tanh.inc @@ -20,8 +20,8 @@ static const struct test_f_f_data tanh_test_data[] = { - TEST_f_f (tanh, plus_infty, 1, ERRNO_UNCHANGED|NO_TEST_INLINE), - TEST_f_f (tanh, minus_infty, -1, ERRNO_UNCHANGED|NO_TEST_INLINE), + TEST_f_f (tanh, plus_infty, 1, ERRNO_UNCHANGED), + TEST_f_f (tanh, minus_infty, -1, ERRNO_UNCHANGED), TEST_f_f (tanh, qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_f_f (tanh, -qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED), TEST_f_f (tanh, snan_value, qnan_value, INVALID_EXCEPTION), |