When running all the system tests, output from a test is sent to a test.output file in the test directory. These are combined in to systests.output when the run finishes. (cherry picked from commit055e5be9fd) (cherry picked from commit50769a4a9e) (cherry picked from commit818ac05cfc)
23 lines
694 B
Bash
23 lines
694 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2000, 2001, 2004, 2007, 2010-2012, 2014-2016 Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# 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
|
|
|
|
for d in $SEQUENTIALDIRS
|
|
do
|
|
$SHELL run.sh "${@}" $d | tee $d/test.output
|
|
done
|