[rt46602] Minor tidying up of documentation

This commit is contained in:
Stephen Morris
2017-12-20 14:53:07 +00:00
parent 549a6c6bc8
commit ce66752adc

View 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