- Timestamp:
- Jul 3, 2005, 12:54:54 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.12
to1.13
r2157 r2158 52 52 ifeq ($(TARGET),innoteklibc) 53 53 SKIPPED := \ 54 malloc/tst-mallocstate.c \ 55 \ 56 math/test-matherr.c \ 57 math/bug-tgmath1.c \ 58 math/test-tgmath.c \ 59 math/test-tgmath-ret.c \ 54 60 \ 55 61 misc/tst-efgcvt.c \ … … 99 105 stdio-common/tst-obprintf.c \ 100 106 stdio-common/tst-perror.c \ 101 stdio-common/tst-pop en.c \107 stdio-common/tst-pop8en.c \ 102 108 stdio-common/tst-printfsz.c \ 103 109 stdio-common/tst-swprintf.c \ … … 146 152 posix/tst-fnmatch.c \ 147 153 posix/tst-pcre.c \ 148 misc/tst-tsearch.c 154 misc/tst-tsearch.c \ 155 misc/tst-dirname.c 149 156 150 157 # NOTES: … … 159 166 160 167 CFLAGS += -Zomf -g -I sysdeps/os2 \ 168 -Dprogram_invocation_short_name=getprogname\(\) \ 161 169 -DHAVE_STRNLEN \ 162 170 -DHAVE_MEMPCPY \ … … 170 178 171 179 posix/runptests.c_ARGS = 15 # expect 15 errors 180 math/test-float.c_ARGS = -e 273 # expect 273 errors 181 math/test-ifloat.c_ARGS = -e 217 # expect 217 errors 182 math/test-double.c_ARGS = -e 174 # expect 174 errors 183 math/test-idouble.c_ARGS = -e 142 # expect 142 errors 184 math/test-ldouble.c_ARGS = -e 212 # expect 212 errors 185 math/test-ildoubl.c_ARGS = -e 153 # expect 153 errors 172 186 endif 173 187 … … 373 387 math/bug-nexttoward.c \ 374 388 math/bug-tgmath1.c \ 375 math/test-double.c \376 389 math/test-fenv.c \ 377 390 math/test-float.c \ 378 391 math/test-fpucw.c \ 379 math/test-idouble.c \380 math/test-ifloat.c \381 math/test-ildoubl.c \382 math/test-ldouble.c \383 392 math/test-matherr.c \ 384 393 math/test-misc.c \ 385 394 math/test-tgmath-ret.c \ 386 395 math/test-tgmath.c \ 387 math/tst-definitions.c 396 math/tst-definitions.c \ 397 math/test-idouble.c \ 398 math/test-ifloat.c \ 399 math/test-double.c \ 400 math/test-ldouble.c \ 401 math/test-ildoubl.c 388 402 # math/atest-exp2.c 389 403 # math/atest-sincos.c 390 404 # math/atest-exp.c 391 # math/gen-libm-test.pl 405 392 406 $(foreach t,$(MATH),$(eval $(t)_LDFLAGS := -lm)) 393 407 $(foreach t,$(filter math/test-%,$(MATH)), \ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/math/libm-test.inc
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2157 r2158 168 168 static int output_points; /* Should the single function results printed? */ 169 169 static int ignore_max_ulp; /* Should we ignore max_ulp? */ 170 static int expect_errors; /* Number of errors we should expect / allow. */ 170 171 171 172 static FLOAT minus_zero, plus_zero; … … 4487 4488 { "ignore-max-ulp", 'i', "yes/no", 0, 4488 4489 "Ignore given maximal errors"}, 4490 { "expect", 'e', "NUMBER", 0, "Number of errors to expect"}, 4489 4491 { NULL, 0, NULL, 0, NULL } 4490 4492 }; … … 4529 4531 else 4530 4532 verbose = 3; 4533 break; 4534 case 'e': 4535 if (optarg) 4536 expect_errors = (unsigned int) strtoul (optarg, NULL, 0); 4537 else 4538 expect_errors = 9999999; 4531 4539 break; 4532 4540 default: … … 4741 4749 { 4742 4750 printf (" %d errors occurred.\n", noErrors); 4743 return 1;4751 return noErrors > expect_errors; 4744 4752 } 4745 4753 printf (" All tests passed successfully.\n"); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.