# Run all the system tests.
#
# Usage:
-# runall.sh [numprocesses]
+# runall.sh [-n] [numprocesses]
#
-# ...where numprocess is the number of processes to use. The default is 1,
-# which runs the tests sequentially.
+# -n Noclean. Keep all output files produced by all tests. These
+# can later be removed by running "cleanall.sh".
+#
+# numprocess Number of simultaneous processes to use when running the tests.
+# The default is one, which causes the tests to run sequentially.
SYSTEMTESTTOP=.
. $SYSTEMTESTTOP/conf.sh
use Getopt::Long;
# Usage:
-# perl start.pl [--noclean] [--restart] [--port port] test [server [options]]
+# perl start.pl [--noclean] [--restart] [--port port] test [server [options]]
#
# --noclean Do not cleanup files in server directory.
#
# ALSO NOTE: this variable will be filled with the contents
# of the first non-commented/non-blank line of args in a file
# called "named.args" in an ns*/ subdirectory. Only the FIRST
-# non-commented/non-blank line is used (everything else in the
-# file is ignored). If "options" is already set, then
+# non-commented/non-blank line is used (everything else in
+# the file is ignored). If "options" is already set, then
# "named.args" is ignored.
my $usage = "usage: $0 [--noclean] [--restart] [--port <port>] test-directory [server-directory [server-options]]";