mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 02:42:33 -05:00
174 lines
4.8 KiB
Bash
174 lines
4.8 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2000-2017 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/.
|
|
|
|
#
|
|
# Common configuration data for system tests, to be sourced into
|
|
# other shell scripts.
|
|
#
|
|
|
|
# Find the top of the BIND9 tree.
|
|
TOP=${SYSTEMTESTTOP:=.}/../../..
|
|
|
|
# Make it absolute so that it continues to work after we cd.
|
|
TOP=`cd $TOP && pwd`
|
|
|
|
NAMED=$TOP/bin/named/named
|
|
# We must use "named -l" instead of "lwresd" because argv[0] is lost
|
|
# if the program is libtoolized.
|
|
LWRESD="$TOP/bin/named/named -l"
|
|
DIG=$TOP/bin/dig/dig
|
|
DELV=$TOP/bin/delv/delv
|
|
RNDC=$TOP/bin/rndc/rndc
|
|
NSUPDATE=$TOP/bin/nsupdate/nsupdate
|
|
DDNSCONFGEN=$TOP/bin/confgen/ddns-confgen
|
|
TSIGKEYGEN=$TOP/bin/confgen/tsig-keygen
|
|
RNDCCONFGEN=$TOP/bin/confgen/rndc-confgen
|
|
KEYGEN=$TOP/bin/dnssec/dnssec-keygen
|
|
KEYFRLAB=$TOP/bin/dnssec/dnssec-keyfromlabel
|
|
SIGNER=$TOP/bin/dnssec/dnssec-signzone
|
|
REVOKE=$TOP/bin/dnssec/dnssec-revoke
|
|
SETTIME=$TOP/bin/dnssec/dnssec-settime
|
|
DSFROMKEY=$TOP/bin/dnssec/dnssec-dsfromkey
|
|
IMPORTKEY=$TOP/bin/dnssec/dnssec-importkey
|
|
CHECKDS=$TOP/bin/python/dnssec-checkds
|
|
COVERAGE=$TOP/bin/python/dnssec-coverage
|
|
KEYMGR=$TOP/bin/python/dnssec-keymgr
|
|
CHECKZONE=$TOP/bin/check/named-checkzone
|
|
CHECKCONF=$TOP/bin/check/named-checkconf
|
|
PK11GEN="$TOP/bin/pkcs11/pkcs11-keygen -q -s ${SLOT:-0} -p ${HSMPIN:-1234}"
|
|
PK11LIST="$TOP/bin/pkcs11/pkcs11-list -s ${SLOT:-0} -p ${HSMPIN:-1234}"
|
|
PK11DEL="$TOP/bin/pkcs11/pkcs11-destroy -s ${SLOT:-0} -p ${HSMPIN:-1234} -w 0"
|
|
JOURNALPRINT=$TOP/bin/tools/named-journalprint
|
|
VERIFY=$TOP/bin/dnssec/dnssec-verify
|
|
ARPANAME=$TOP/bin/tools/arpaname
|
|
RESOLVE=$TOP/lib/samples/resolve
|
|
RRCHECKER=$TOP/bin/tools/named-rrchecker
|
|
GENRANDOM=$TOP/bin/tools/genrandom
|
|
NSLOOKUP=$TOP/bin/dig/nslookup
|
|
DNSTAPREAD=$TOP/bin/tools/dnstap-read
|
|
MDIG=$TOP/bin/tools/mdig
|
|
NZD2NZF=$TOP/bin/tools/named-nzd2nzf
|
|
FSTRM_CAPTURE=@FSTRM_CAPTURE@
|
|
FEATURETEST=$TOP/bin/tests/system/feature-test
|
|
|
|
RANDFILE=$TOP/bin/tests/system/random.data
|
|
|
|
BIGKEY=$TOP/bin/tests/system/rsabigexponent/bigkey
|
|
GENCHECK=$TOP/bin/tests/system/rndc/gencheck
|
|
KEYCREATE=$TOP/bin/tests/system/tkey/keycreate
|
|
KEYDELETE=$TOP/bin/tests/system/tkey/keydelete
|
|
LWTEST=$TOP/bin/tests/system/lwresd/lwtest
|
|
MAKEJOURNAL=$TOP/bin/tests/makejournal
|
|
PIPEQUERIES=$TOP/bin/tests/system/pipelined/pipequeries
|
|
SAMPLEUPDATE=$TOP/lib/samples/sample-update
|
|
|
|
# The "stress" test is not run by default since it creates enough
|
|
# load on the machine to make it unusable to other users.
|
|
# v6synth
|
|
SUBDIRS="acl additional addzone allow_query autosign builtin
|
|
cacheclean case catz checkconf @CHECKDS@ checknames checkzone
|
|
cookie @COVERAGE@ database digdelv dlv dlvauto dlz dlzexternal
|
|
dname dns64 dnssec @DNSTAP@ dscp dsdigest dyndb ecdsa
|
|
ednscompliance emptyzones fetchlimit filter-aaaa formerr
|
|
forward geoip glue gost inline integrity ixfr @KEYMGR@
|
|
legacy limits logfileconfig lwresd masterfile masterformat
|
|
metadata mkeys names notify nslookup nsupdate nzd2nzf
|
|
pending @PKCS11_TEST@ pipelined reclimit redirect resolver
|
|
rndc rpz rpzrecurse rrchecker rrl rrsetorder rsabigexponent
|
|
runtime sfcache smartsign sortlist spf staticstub statistics
|
|
statschannel stub tcp tkey tsig tsiggss unknown upforwd
|
|
verify views wildcard xfer xferquota zero zonechecks"
|
|
|
|
# Things that are different on Windows
|
|
KILL=kill
|
|
DIFF=diff
|
|
DOS2UNIX=true
|
|
# There's no trailing period on Windows
|
|
TP=.
|
|
|
|
# Use the CONFIG_SHELL detected by configure for tests
|
|
SHELL=@SHELL@
|
|
|
|
# CURL will be empty if no program was found by configure
|
|
CURL=@CURL@
|
|
|
|
# XMLLINT will be empty if no program was found by configure
|
|
XMLLINT=@XMLLINT@
|
|
|
|
# PERL will be an empty string if no perl interpreter was found.
|
|
PERL=@PERL@
|
|
|
|
if test -n "$PERL"
|
|
then
|
|
if $PERL -e "use IO::Socket::INET6;" 2> /dev/null
|
|
then
|
|
TESTSOCK6="$PERL $TOP/bin/tests/system/testsock6.pl"
|
|
else
|
|
TESTSOCK6=false
|
|
fi
|
|
else
|
|
TESTSOCK6=false
|
|
fi
|
|
|
|
if grep "^#define WANT_IPV6 1" $TOP/config.h > /dev/null 2>&1 ; then
|
|
TESTSOCK6="$TESTSOCK6"
|
|
else
|
|
TESTSOCK6=false
|
|
fi
|
|
|
|
|
|
PYTHON=@PYTHON@
|
|
|
|
#
|
|
# Determine if we support various optional features.
|
|
#
|
|
CHECK_DSA=@CHECK_DSA@
|
|
HAVEXMLSTATS=@XMLSTATS@
|
|
HAVEJSONSTATS=@JSONSTATS@
|
|
ZLIB=@ZLIB@
|
|
NZD=@NZD_TOOLS@
|
|
|
|
. ${TOP}/version
|
|
|
|
export ARPANAME
|
|
export BIGKEY
|
|
export CHECKZONE
|
|
export DESCRIPTION
|
|
export DIG
|
|
export FEATURETEST
|
|
export FSTRM_CAPTURE
|
|
export GENCHECK
|
|
export JOURNALPRINT
|
|
export KEYCREATE
|
|
export KEYDELETE
|
|
export KEYFRLAB
|
|
export KEYGEN
|
|
export KEYSETTOOL
|
|
export KEYSIGNER
|
|
export LWRESD
|
|
export LWTEST
|
|
export MAKEJOURNAL
|
|
export MDIG
|
|
export NAMED
|
|
export NSLOOKUP
|
|
export NSUPDATE
|
|
export NZD2NZF
|
|
export PERL
|
|
export PIPEQUERIES
|
|
export PK11DEL
|
|
export PK11GEN
|
|
export PK11LIST
|
|
export PYTHON
|
|
export RANDFILE
|
|
export RESOLVE
|
|
export RNDC
|
|
export RRCHECKER
|
|
export SAMPLEUPDATE
|
|
export SIGNER
|
|
export SUBDIRS
|
|
export TESTSOCK6
|