diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-02-17 18:23:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-02-17 18:23:42 +0000 |
commit | c6222ab921cee390ea3aab57795e028d587b77e2 (patch) | |
tree | 1786e626fbd5876fac5496febe5f5c118d4c0ac8 /math | |
parent | 71a14d64831fed0b9fd6a0488aff6d6eab89b448 (diff) | |
download | glibc-c6222ab921cee390ea3aab57795e028d587b77e2.tar.gz |
Update.
1998-02-17 17:41 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-load.c (open_path): Take extra argument PRELOADED.
If PRELOADED is nonzero check in case of an SUID application
whether the shared object has the SUID bit set.
Fix some other problems with handling shared objects in system
specific directories.
(_dl_map_object): Also take extra parameter and pass it to open_path.
* elf/link.h (_dl_map_object): Correct prototype and comment.
* elf/rtld.c (dl_main): Call _dl_map_object correctly.
* elf/dl-open.c (_dl_open): Likewise.
* elf/dl-deps.c (openaux, _dl_map_object_deps): Likewise.
* sysdeps/libm-ieee754/s_modfl.c: Handle numbers > 1.0 correctly.
* math/libm-test.c (modf_test): Add test for 1.5.
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/math/libm-test.c b/math/libm-test.c index 8fa473eaf5..ea5716ff81 100644 --- a/math/libm-test.c +++ b/math/libm-test.c @@ -1703,6 +1703,10 @@ modf_test (void) check ("modf (-0, &x) returns -0", result, minus_zero); check ("modf (-0, &x) sets x to -0", intpart, minus_zero); + result = FUNC(modf) (1.5, &intpart); + check ("modf (1.5, &x) returns 0.5", result, 0.5); + check ("modf (1.5, &x) sets x to 1", intpart, 1); + result = FUNC(modf) (2.5, &intpart); check ("modf (2.5, &x) returns 0.5", result, 0.5); check ("modf (2.5, &x) sets x to 2", intpart, 2); |