Sweeping changes to system test suite

This commit is contained in:
Michael Sawyer
2000-05-18 22:49:29 +00:00
parent e6ce1a0ea9
commit a92428ecb8
13 changed files with 201 additions and 37 deletions

20
bin/tests/system/setup.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
#
# Run a system test.
#
. ./conf.sh
test $# -gt 0 || { echo "usage: runtest.sh test-directory" >&2; exit 1; }
test=$1
shift
test -d $test || { echo "$0: $test: no such test" >&2; exit 1; }
# Set up any dynamically generated test data
if test -f $test/setup.sh
then
( cd $test && sh setup.sh "$@" )
fi