2017-11-23 10:02:15 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2018-02-22 15:10:37 -08:00
|
|
|
# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
|
2017-11-23 10:02:15 +00:00
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
# Run system tests that must be run sequentially
|
|
|
|
#
|
|
|
|
# Note: Use "make check" (or runall.sh) to run all the system tests. This
|
|
|
|
# script will just run those tests that require that each of their nameservers
|
|
|
|
# is the only one running on an IP address.
|
|
|
|
#
|
|
|
|
|
|
|
|
SYSTEMTESTTOP=.
|
|
|
|
. $SYSTEMTESTTOP/conf.sh
|
|
|
|
|
2017-12-15 15:56:33 +00:00
|
|
|
for d in $SEQUENTIALDIRS
|
|
|
|
do
|
2017-12-20 14:54:37 +00:00
|
|
|
$SHELL run.sh "${@}" $d 2>&1 | tee $d/test.output
|
2017-12-15 15:56:33 +00:00
|
|
|
done
|