diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-11-14 00:36:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-11-14 00:36:46 +0000 |
commit | 45740f4642c2e7f59221981138472c4b3f783176 (patch) | |
tree | 90fc3da0e81a83346eac482f50b03065f449849b /math/libm-test.inc | |
parent | 25ce4c6b9e6facade00a35eec94780c3c67cf249 (diff) | |
download | glibc-45740f4642c2e7f59221981138472c4b3f783176.tar glibc-45740f4642c2e7f59221981138472c4b3f783176.tar.gz glibc-45740f4642c2e7f59221981138472c4b3f783176.tar.bz2 glibc-45740f4642c2e7f59221981138472c4b3f783176.zip |
Update.
2003-11-13 Andreas Jaeger <aj@suse.de>
* math/Makefile (CFLAGS-test-float.c): Add -fno-builtin.
(CFLAGS-test-double.c): Likewise.
(CFLAGS-test-ldouble.c): Likewise.
(CPPFLAGS-test-ifloat.c): Likewise.
(CPPFLAGS-test-idouble.c): Likewise.
(CPPFLAGS-test-ildoubl.c): Likewise.
* math/libm-test.inc (ceil_test): Test ceil (0.25).
Diffstat (limited to 'math/libm-test.inc')
-rw-r--r-- | math/libm-test.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc index 19e26c680a..8aa9aaaccc 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -1625,6 +1625,7 @@ ceil_test (void) TEST_f_f (ceil, M_PIl, 4.0); TEST_f_f (ceil, -M_PIl, -3.0); + TEST_f_f (ceil, 0.25, 1.0); END (ceil); } |