]> 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)
committerEvan Hunt <each@isc.org>
Sun, 25 Feb 2018 17:27:12 +0000 (09:27 -0800)
(cherry picked from commit ce66752adc22ff5f59afe212eccb5c0711ec0ba6)
(cherry picked from commit 6b5e5a2da27bd514c22f9c7d98660d5b17e7251e)
(cherry picked from commit 2a5707943a6320c98c4f52aa8751919d1e311689)

bin/tests/system/Makefile.in

index 5a05b2d865928a64194e0fbfcc56dfff34a3150d..0459ff4c033d01eb99e34d534d18d62cf75edeb6 100644 (file)
@@ -68,13 +68,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
@@ -83,10 +83,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