mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-23 15:17:01 -04:00
97 lines
3.3 KiB
Bash
97 lines
3.3 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
|
|
if [ -z "$TSAN_OPTIONS" ]; then # workaround for GL#4119
|
|
export DELV=$TOP_BUILDDIR/bin/delv/delv
|
|
else
|
|
export DELV=:
|
|
fi
|
|
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 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
|