thommay     2002/12/29 11:19:28

  Modified:    test     Makefile.in
  Log:
  Apply a patch to fix make check in test from Matt Kraai, extended to run
  testall during make check.
  Submitted by: Matt Kraai <[EMAIL PROTECTED]>
  Reviewed by: Thom May
  
  Revision  Changes    Path
  1.132     +4 -4      apr/test/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/test/Makefile.in,v
  retrieving revision 1.131
  retrieving revision 1.132
  diff -u -r1.131 -r1.132
  --- Makefile.in       10 Dec 2002 20:06:50 -0000      1.131
  +++ Makefile.in       29 Dec 2002 19:19:28 -0000      1.132
  @@ -33,13 +33,13 @@
   
   CFLAGS=$(MY_CFLAGS)
   
  -check: $(PROGRAMS) $(NONPORTABLE)
  -     for prog in $(PROGRAMS) $(NONPORTABLE); do \
  +check: $(PROGRAMS) $(NONPORTABLE) testall
  +     for prog in $(PROGRAMS) $(NONPORTABLE) testall; do \
                ./$$prog; \
  -             if test $$i = 255; then \
  +             if test $$? = 255; then \
                        echo "$$prog failed"; \
                        break; \
  -             fi \
  +             fi; \
        done
   
   [EMAIL PROTECTED]@: testflock.lo $(LOCAL_LIBS)
  
  
  

Reply via email to