mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-14 14:42:22 -04:00
20 lines
321 B
Bash
20 lines
321 B
Bash
#!/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
|
|
|
|
|