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-driver.c | |
parent | a8ce8222343933d28665e1687ab8862c0664d9f7 (diff) | |
download | glibc-1c15464ca05f36db5c582856d3770d5e8bde9d61.tar.gz glibc-1c15464ca05f36db5c582856d3770d5e8bde9d61.tar.xz glibc-1c15464ca05f36db5c582856d3770d5e8bde9d61.zip |
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-driver.c')
-rw-r--r-- | math/libm-test-driver.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/math/libm-test-driver.c b/math/libm-test-driver.c index f5b2c00b57..11b541b2e7 100644 --- a/math/libm-test-driver.c +++ b/math/libm-test-driver.c @@ -23,7 +23,6 @@ /* Flags set by the including file. */ const int flag_test_errno = TEST_ERRNO; const int flag_test_exceptions = TEST_EXCEPTIONS; -const int flag_test_inline = TEST_INLINE; const int flag_test_mathvec = TEST_MATHVEC; #if TEST_NARROW @@ -41,8 +40,6 @@ const int snan_tests_arg = SNAN_TESTS (FLOAT); /* Informal description of the functions being tested. */ #if TEST_MATHVEC # define TEST_MSG "testing " STR_FLOAT " (vector length " STR_VEC_LEN ")\n" -#elif TEST_INLINE -# define TEST_MSG "testing " STR_FLOAT " (inline functions)\n" #elif TEST_NARROW # define TEST_MSG "testing " STR_FLOAT " (argument " STR_ARG_FLOAT ")\n" #else @@ -70,11 +67,7 @@ const char test_msg[] = TEST_MSG; ? TEST_NAN_PAYLOAD \ : 0) -#if TEST_INLINE -const char qtype_str[] = "i" TYPE_STR; -#else const char qtype_str[] = TYPE_STR; -#endif /* Various constants derived from pi. We must supply them precalculated for accuracy. They are written as a series of postfix operations to keep |