diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-07-17 00:03:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-07-17 00:03:55 +0000 |
commit | d747a0a564d522ab31944eac60e923e4596b3684 (patch) | |
tree | 35aa88c9510ae281b8d704e4e3b142f697422bd1 /math | |
parent | 547a7a8e54ba925e7721c71b673f7993e9fb518f (diff) | |
download | glibc-d747a0a564d522ab31944eac60e923e4596b3684.tar glibc-d747a0a564d522ab31944eac60e923e4596b3684.tar.gz glibc-d747a0a564d522ab31944eac60e923e4596b3684.tar.bz2 glibc-d747a0a564d522ab31944eac60e923e4596b3684.zip |
Update.
* catgets/tst-catgets.c (main): Don't expect results for
untranslated messages.
* math/Makefile (CPPFLAGS-test-ifloat.c): Also define TEST_FAST_MATH.
(CPPFLAGS-test-idouble.c): Likewise.
(CPPFLAGS-test-ildouble.c): Likewise.
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/math/Makefile b/math/Makefile index 2887aed649..d59b054fce 100644 --- a/math/Makefile +++ b/math/Makefile @@ -122,9 +122,12 @@ CFLAGS-test-float.c = -fno-inline -ffloat-store CFLAGS-test-double.c = -fno-inline -ffloat-store CFLAGS-test-ldouble.c = -fno-inline -ffloat-store CFLAGS-test-tgmath.c = -fno-builtin -CPPFLAGS-test-ifloat.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ -CPPFLAGS-test-idouble.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ -CPPFLAGS-test-ildoubl.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ +CPPFLAGS-test-ifloat.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ \ + -DTEST_FAST_MATH +CPPFLAGS-test-idouble.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ \ + -DTEST_FAST_MATH +CPPFLAGS-test-ildoubl.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ \ + -DTEST_FAST_MATH distribute += libm-test.inc gen-libm-test.pl README.libm-test |