diff options
author | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-07-15 14:29:51 -0500 |
---|---|---|
committer | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2017-06-12 14:48:54 -0300 |
commit | 3c023dbf5780f5afe8a5ea8e17667719307d955f (patch) | |
tree | f5a00fa4562d37c42996ef2113c42b9d10c4f073 /math/test-ldouble.h | |
parent | 8fd31014315921b4107de171d14b091dbe443226 (diff) | |
download | glibc-3c023dbf5780f5afe8a5ea8e17667719307d955f.tar glibc-3c023dbf5780f5afe8a5ea8e17667719307d955f.tar.gz glibc-3c023dbf5780f5afe8a5ea8e17667719307d955f.tar.bz2 glibc-3c023dbf5780f5afe8a5ea8e17667719307d955f.zip |
float128: Add test-{float128,ifloat128,float128-finite}
This adds test support for float128, and lays some groundwork for future
_FloatN types.
* math/gen-libm-test.pl (@all_floats): Add ifloat128 and float128.
(%all_floats_pfx): Add macro prefix for float128 (FLT128).
* math/libm-test-exp10.inc (pow10_test): Do not test for _FloatN,
* math/libm-test-isfinite.inc (finite_test): Likewise.
* math/libm-test-lgamma.inc (gamma_test): Likewise.
* math/libm-test-nexttoward.inc (nexttoward_test): Likewise.
(nexttoward_test_data}: Likewise.
* math/libm-test-remainder.inc (drem_test): Likewise.
* math/libm-test-scalb.inc (scalb_test): Likewise.
(scalb_test_data): Likewise.
* math/libm-test-significand.inc (significand_test): Likewise.
(significand_test_data): Likewise.
* math/libm-test-support.c (check_complex): Replace __complex__
FLOAT with CFLOAT to get the support for old compiler.
* math/libm-test-support.h (check_complex): Likewise.
* math/test-double.h (CFLOAT, TEST_FLOATN): New macros.
* math/test-float.h (CFLOAT, TEST_FLOATN): Likewise.
* math/test-ldouble.h (CFLOAT, TEST_FLOATN): Likewise.
* math/test-float128.h: New file.
* math/test-math-floatn.h: New file.
Diffstat (limited to 'math/test-ldouble.h')
-rw-r--r-- | math/test-ldouble.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/math/test-ldouble.h b/math/test-ldouble.h index 4bf2b416df..89d4940117 100644 --- a/math/test-ldouble.h +++ b/math/test-ldouble.h @@ -18,6 +18,7 @@ #define FUNC(function) function##l #define FLOAT long double +#define CFLOAT __complex__ long double #define BUILD_COMPLEX(real, imag) (CMPLXL ((real), (imag))) #define PREFIX LDBL #define TYPE_STR "ldouble" @@ -25,3 +26,4 @@ #define LITM(x) x ## l #define FTOSTR strfroml #define snan_value_MACRO SNANL +#define TEST_FLOATN 0 |