From 8db012560980846688e5e2862d9d63ba670ca038 Mon Sep 17 00:00:00 2001 From: aaron Date: Thu, 5 Sep 2002 05:25:04 +0000 Subject: Remove the toplevel "make test" target, but replace it with a simliar "make check" (If anyone has strong feelings about this, I don't mind changing it to "make test" again.) Add an explicit all target to the test/Makefile that simply builds the normal and non-portable programs. Add a check target to the test/Makefile that makes sure all test programs are built then runs each one. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63850 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.in | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 7f069db9c..0bf9228ea 100644 --- a/Makefile.in +++ b/Makefile.in @@ -127,15 +127,8 @@ apr.exp: exports.c export_vars.h dox: doxygen $(top_srcdir)/docs/doxygen.conf -test: $(TARGET_LIB) - (cd test; make clean; make; \ - for prog in `find . -type f -perm -u+x -name "test*" -print`; do \ - ./$$prog; \ - if [ $$? -eq 255 ]; then \ - echo "$$prog failed"; \ - break; \ - fi \ - done ) +check: $(TARGET_LIB) + (cd test && $(MAKE) check) # DO NOT REMOVE docs: $(INCDIR)/*.h -- cgit v1.2.1