]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[rt46602] Minor tidying up of documentation
authorStephen Morris <stephen@isc.org>
Wed, 20 Dec 2017 14:53:07 +0000 (14:53 +0000)
committerStephen Morris <stephen@isc.org>
Fri, 16 Feb 2018 15:19:44 +0000 (15:19 +0000)
bin/tests/system/Makefile.in

index 50e850530de1bd4d562473c486c35292b18bc9f8..4b780c84a2060a02ba82a6f55be58c66a058db5c 100644 (file)
@@ -60,13 +60,13 @@ parallel.mk:
        for directory in $(PARALLEL) ; do \
                echo "" >> $@ ; \
                echo "$$directory:" >> $@ ; \
-               echo "  @$(SHELL) ./run.sh -r -p $$port $$directory | tee $$directory/test.output" >> $@ ; \
+               echo "  @$(SHELL) ./run.sh -r -p $$port $$directory 2>&1 | tee $$directory/test.output" >> $@ ; \
                port=`expr $$port + 100` ; \
        done
 
 # Targets to run the tests.
 
-test: parallel.mk
+test: parallel.mk subdirs
        @$(MAKE) -f parallel.mk check
        @$(SHELL) ./runsequential.sh -r
        @$(SHELL) ./testsummary.sh
@@ -75,10 +75,9 @@ check: test
 
 # Other targets:
 #
-# testclean - delete files generated by running tests
-# clean - As for testclean, but also delete files built for the tests by "make"
-# distclean - As for clean, but also delete test-related files generated by
-#        "configure"
+# testclean - delete files generated by running tests.
+# clean     - testclean + also delete files built for the tests by "make".
+# distclean - clean + also delete test-related files generated by "configure".
 
 testclean clean distclean::
        if test -f ./cleanall.sh; then $(SHELL) ./cleanall.sh; fi