mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-29 05:43:20 -04:00
In order to have a common naming convention for system tests, rename the only outlier "engine_pkcs11" to "enginepkcs11", which was the only system test using an underscore in its name. The only allowed word separators for system test names are either dash or no separator.
118 lines
3.6 KiB
Bash
118 lines
3.6 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
#
|
|
# 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 https://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
#
|
|
# Common configuration data for system tests, to be sourced into
|
|
# other shell scripts.
|
|
#
|
|
|
|
# Find the top of the BIND9 tree.
|
|
export TOP_BUILDDIR=@abs_top_builddir@
|
|
export TOP_SRCDIR=@abs_top_srcdir@
|
|
|
|
# Provide TMPDIR variable for tests that need it.
|
|
export TMPDIR=${TMPDIR:-/tmp}
|
|
|
|
export ARPANAME=$TOP_BUILDDIR/bin/tools/arpaname
|
|
export CDS=$TOP_BUILDDIR/bin/dnssec/dnssec-cds
|
|
export CHECKCONF=$TOP_BUILDDIR/bin/check/named-checkconf
|
|
export CHECKZONE=$TOP_BUILDDIR/bin/check/named-checkzone
|
|
export DELV=$TOP_BUILDDIR/bin/delv/delv
|
|
export DIG=$TOP_BUILDDIR/bin/dig/dig
|
|
export DNSTAPREAD=$TOP_BUILDDIR/bin/tools/dnstap-read
|
|
export DSFROMKEY=$TOP_BUILDDIR/bin/dnssec/dnssec-dsfromkey
|
|
export FEATURETEST=$TOP_BUILDDIR/bin/tests/system/feature-test
|
|
export FSTRM_CAPTURE=@FSTRM_CAPTURE@
|
|
export HOST=$TOP_BUILDDIR/bin/dig/host
|
|
export IMPORTKEY=$TOP_BUILDDIR/bin/dnssec/dnssec-importkey
|
|
export JOURNALPRINT=$TOP_BUILDDIR/bin/tools/named-journalprint
|
|
export KEYFRLAB=$TOP_BUILDDIR/bin/dnssec/dnssec-keyfromlabel
|
|
export KEYGEN=$TOP_BUILDDIR/bin/dnssec/dnssec-keygen
|
|
export MDIG=$TOP_BUILDDIR/bin/tools/mdig
|
|
export NAMED=$TOP_BUILDDIR/bin/named/named
|
|
export NSEC3HASH=$TOP_BUILDDIR/bin/tools/nsec3hash
|
|
export NSLOOKUP=$TOP_BUILDDIR/bin/dig/nslookup
|
|
export NSUPDATE=$TOP_BUILDDIR/bin/nsupdate/nsupdate
|
|
export NZD2NZF=$TOP_BUILDDIR/bin/tools/named-nzd2nzf
|
|
export REVOKE=$TOP_BUILDDIR/bin/dnssec/dnssec-revoke
|
|
export RNDC=$TOP_BUILDDIR/bin/rndc/rndc
|
|
export RNDCCONFGEN=$TOP_BUILDDIR/bin/confgen/rndc-confgen
|
|
export RRCHECKER=$TOP_BUILDDIR/bin/tools/named-rrchecker
|
|
export SETTIME=$TOP_BUILDDIR/bin/dnssec/dnssec-settime
|
|
export SIGNER=$TOP_BUILDDIR/bin/dnssec/dnssec-signzone
|
|
export TSIGKEYGEN=$TOP_BUILDDIR/bin/confgen/tsig-keygen
|
|
export VERIFY=$TOP_BUILDDIR/bin/dnssec/dnssec-verify
|
|
export WIRETEST=$TOP_BUILDDIR/bin/tests/wire_test
|
|
|
|
export BIGKEY=$TOP_BUILDDIR/bin/tests/system/rsabigexponent/bigkey
|
|
export GENCHECK=$TOP_BUILDDIR/bin/tests/system/rndc/gencheck
|
|
export KEYCREATE=$TOP_BUILDDIR/bin/tests/system/tkey/keycreate
|
|
export KEYDELETE=$TOP_BUILDDIR/bin/tests/system/tkey/keydelete
|
|
export MAKEJOURNAL=$TOP_BUILDDIR/bin/tests/system/makejournal
|
|
export PIPEQUERIES=$TOP_BUILDDIR/bin/tests/system/pipelined/pipequeries
|
|
|
|
# we don't want a KRB5_CONFIG setting breaking the tests
|
|
export KRB5_CONFIG=/dev/null
|
|
# use local keytab instead of default /etc/krb5.keytab
|
|
export KRB5_KTNAME=dns.keytab
|
|
|
|
#
|
|
# Programs detected by configure
|
|
# Variables will be empty if no program was found by configure
|
|
#
|
|
export SHELL=@SHELL@
|
|
export CURL=@CURL@
|
|
export NC=@NC@
|
|
export XMLLINT=@XMLLINT@
|
|
export XSLTPROC=@XSLTPROC@
|
|
export PYTEST=@PYTEST@
|
|
|
|
#
|
|
# Interpreters for system tests detected by configure
|
|
#
|
|
export PERL=$(command -v "@PERL@" || true)
|
|
if ! test -x "$PERL"; then
|
|
echo "Perl interpreter is required for system tests."
|
|
exit 77
|
|
fi
|
|
export PYTHON=$(command -v "@PYTHON@" || true)
|
|
if ! test -x "$PYTHON"; then
|
|
echo "Python interpreter is required for system tests."
|
|
exit 77
|
|
fi
|
|
|
|
# Load common values
|
|
. $TOP_SRCDIR/bin/tests/system/conf.sh.common
|
|
|
|
#
|
|
# Construct the lists of tests to run
|
|
#
|
|
PARALLEL_UNIX="chain
|
|
checkds
|
|
cookie
|
|
dlzexternal
|
|
dnssec
|
|
dyndb
|
|
enginepkcs11
|
|
filter-aaaa
|
|
kasp
|
|
keyfromlabel
|
|
keymgr2kasp
|
|
legacy
|
|
logfileconfig
|
|
nzd2nzf
|
|
pipelined
|
|
qmin
|
|
shutdown
|
|
tcp"
|
|
SUBDIRS="$PARALLEL_COMMON $PARALLEL_UNIX"
|