- Timestamp:
- Jul 3, 2005, 10:57:18 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.17
to1.18
r2195 r2196 10 10 OUTDIR = ./out 11 11 ABSOUTDIR = $(CURDIR)/out 12 TS = $(shell date '+ "%Y-%m-%d-%H-%M-%S"')12 TS = $(shell date '+%Y-%m-%d-%H-%M-%S') 13 13 LOG = $(OUTDIR)/$(1)-$(TS).log 14 14 CC = gcc … … 203 203 math/test-fenv.c \ 204 204 libio/bug-fopena+.c \ 205 libio/tst-sscanf.c 205 libio/tst-sscanf.c \ 206 posix/tst-preadwrite.c 206 207 207 208 # NOTES: … … 912 913 tests-logged: 913 914 @echo "**** logging to $(call LOG,test) ****" 915 @mkdir -p $(OUTDIR) 914 916 $(MAKE) tests 2>&1 | tee $(call LOG,test) 915 917 … … 924 926 conform-logged: 925 927 @echo "**** logging to $(call LOG,conform) ****" 928 @mkdir -p $(OUTDIR) 926 929 $(MAKE) conform 2>&1 | tee $(call LOG,conform) 927 930 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/libctests/glibc/posix/tst-waitid.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r2195 r2196 397 397 || !WIFCONTINUED (fail)) 398 398 { 399 printf ("waitpid WCONTINUED on continued: status %x\n", fail); 399 printf ("waitpid WCONTINUED on continued: status %x (stopped=%d,signaled=%d,exited=%d,continued=%d)\n", 400 fail, WIFSTOPPED (fail), WIFSIGNALED (fail), WIFEXITED (fail), WIFCONTINUED (fail)); 400 401 RETURN (EXIT_FAILURE); 401 402 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.