mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '869-prereq-sh-needed-in-forward-test' into 'master'
Resolve "prereq.sh needed in forward test" Closes #869 See merge request isc-projects/bind9!1479
This commit is contained in:
commit
b8d37b6c89
2 changed files with 22 additions and 0 deletions
21
bin/tests/system/forward/prereq.sh
Normal file
21
bin/tests/system/forward/prereq.sh
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 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/.
|
||||
#
|
||||
# See the COPYRIGHT file distributed with this work for additional
|
||||
# information regarding copyright ownership.
|
||||
|
||||
SYSTEMTESTTOP=..
|
||||
. $SYSTEMTESTTOP/conf.sh
|
||||
|
||||
if $PERL -e 'use Net::DNS;' 2>/dev/null
|
||||
then
|
||||
:
|
||||
else
|
||||
echo_i "This test requires the Net::DNS library." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
|
@ -647,6 +647,7 @@
|
|||
./bin/tests/system/forward/clean.sh SH 2000,2001,2004,2007,2012,2014,2015,2016,2018,2019
|
||||
./bin/tests/system/forward/ns1/example.db X 2000,2001,2018
|
||||
./bin/tests/system/forward/ns2/example.db X 2000,2001,2018
|
||||
./bin/tests/system/forward/prereq.sh SH 2019
|
||||
./bin/tests/system/forward/setup.sh SH 2018,2019
|
||||
./bin/tests/system/forward/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2014,2016,2018,2019
|
||||
./bin/tests/system/genzone.sh SH 2001,2002,2003,2004,2007,2009,2011,2012,2013,2014,2015,2016,2017,2018,2019
|
||||
|
|
|
|||
Loading…
Reference in a new issue