Changeset 2196 for trunk


Ignore:
Timestamp:
Jul 3, 2005, 10:57:18 AM (20 years ago)
Author:
bird
Message:

fixed waitid testcase.

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 to 1.18
    r2195 r2196  
    1010OUTDIR = ./out
    1111ABSOUTDIR = $(CURDIR)/out
    12 TS     = $(shell date '+"%Y-%m-%d-%H-%M-%S"')
     12TS     = $(shell date '+%Y-%m-%d-%H-%M-%S')
    1313LOG    = $(OUTDIR)/$(1)-$(TS).log
    1414CC     = gcc
     
    203203        math/test-fenv.c \
    204204        libio/bug-fopena+.c     \
    205         libio/tst-sscanf.c
     205        libio/tst-sscanf.c \
     206        posix/tst-preadwrite.c
    206207       
    207208# NOTES:       
     
    912913tests-logged:
    913914        @echo "**** logging to $(call LOG,test) ****"
     915        @mkdir -p $(OUTDIR)
    914916        $(MAKE) tests 2>&1 | tee $(call LOG,test)
    915917
     
    924926conform-logged:
    925927        @echo "**** logging to $(call LOG,conform) ****"
     928        @mkdir -p $(OUTDIR)
    926929        $(MAKE) conform 2>&1 | tee $(call LOG,conform)
    927930
  • trunk/src/libctests/glibc/posix/tst-waitid.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2195 r2196  
    397397           || !WIFCONTINUED (fail))
    398398    {
    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));
    400401      RETURN (EXIT_FAILURE);
    401402    }
Note: See TracChangeset for help on using the changeset viewer.