make test-full in the root dir should run verbose tests but not stop on

single failures
This commit is contained in:
Daniel Stenberg 2003-01-21 10:35:34 +00:00
parent 838e776542
commit ed4dff63b9
2 changed files with 5 additions and 1 deletions

View File

@ -27,7 +27,7 @@ test:
@(cd tests; $(MAKE) quiet-test)
test-full:
@(cd tests; $(MAKE) test)
@(cd tests; $(MAKE) full-test)
#
# Build source and binary rpms. For rpm-3.0 and above, the ~/.rpmmacros

View File

@ -17,5 +17,9 @@ quiet-test: server/sws
@cd data && exec $(MAKE) test
srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -s -a
full-test: server/sws
@cd data && exec $(MAKE) test
srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -a
server/sws:
cd server; make sws