- Timestamp:
- Jul 3, 2005, 9:25:01 AM (20 years ago)
- Location:
- trunk/src/libctests/glibc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libctests/glibc/Makefile
-
Property cvs2svn:cvs-rev
changed from
1.15
to1.16
r2191 r2192 176 176 grp/testgrp.c \ 177 177 dirent/opendir-tst1.c \ 178 catgets/test-gencat.c 178 catgets/test-gencat.c \ 179 math/test-fenv.c 179 180 180 181 # NOTES: -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/math/test-misc.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2191 r2192 67 67 for (i = LDBL_MAX_EXP, x = LDBL_MAX; i >= LDBL_MIN_EXP; --i, x /= 2.0L) 68 68 { 69 printf ("2^%d: ", i);69 /*printf ("2^%d: ", i); shut up! */ 70 70 71 71 r = frexpl (x, &e); … … 82 82 continue; 83 83 } 84 puts ("ok");84 /* puts ("ok"); */ 85 85 } 86 86 … … 88 88 --i, x /= 2.0L) 89 89 { 90 printf ("2^%d: ", i);90 /* printf ("2^%d: ", i); shut up! */ 91 91 92 92 r = frexpl (x, &e); … … 103 103 continue; 104 104 } 105 puts ("ok");105 /* puts ("ok"); */ 106 106 } 107 107 … … 1072 1072 if (fpclassify (u.d) != FP_NORMAL) 1073 1073 { 1074 printf ("fpclassify (0x00008000000000000000) failed: %d (%Lg)\n", 1075 fpclassify (u.d), u.d); 1076 result = 1; 1074 if ( fpclassify (u.d) == FP_SUBNORMAL 1075 && !isnormal(u.d) && !isnan(u.d) && !isinf(u.d) && isfinite(u.d)) 1076 printf ("warning: fpclassify (0x00008000000000000000) failed: FP_SUBNORMAL (%Lg) - TODO investigate this on BSD/LIBC!!!\n", u.d); 1077 else 1078 { 1079 printf ("fpclassify (0x00008000000000000000) failed: %d (%Lg) isnormal=%d isnan=%d isinf=%d isfinite=%d\n", 1080 fpclassify (u.d), u.d, isnormal(u.d), isnan(u.d), isinf(u.d), isfinite(u.d)); 1081 result = 1; 1082 } 1077 1083 } 1078 1084 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.