bind9/bin/tests/system/conf.sh.in

57 lines
2.1 KiB
Bash
Raw Normal View History

2000-05-19 18:45:47 -04:00
#!/bin/sh
#
2003-03-05 23:38:29 -05:00
# Copyright (C) 2000, 2001, 2003 Internet Software Consortium.
#
2000-05-19 18:45:47 -04:00
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2000-05-19 18:45:47 -04:00
2003-10-17 03:06:16 -04:00
# $Id: conf.sh.in,v 1.23.2.2.4.1 2003/10/17 07:06:13 marka Exp $
2000-06-22 18:00:42 -04:00
#
2000-05-15 18:53:15 -04:00
# 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`
2000-05-15 18:53:15 -04:00
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
2000-07-10 07:38:48 -04:00
RNDC=$TOP/bin/rndc/rndc
NSUPDATE=$TOP/bin/nsupdate/nsupdate
2000-05-18 17:45:10 -04:00
KEYGEN=$TOP/bin/dnssec/dnssec-keygen
SIGNER=$TOP/bin/dnssec/dnssec-signzone
KEYSIGNER=$TOP/bin/dnssec/dnssec-signkey
2000-05-18 18:49:29 -04:00
KEYSETTOOL=$TOP/bin/dnssec/dnssec-makekeyset
# The "stress" test is not run by default since it creates enough
# load on the machine to make it unusable to other users.
2003-03-05 23:38:29 -05:00
#
# dnssec is missing from SUBDIRS as RFC 2535 support is disabled
2003-10-17 03:06:16 -04:00
# v6synth in no longer supported.
SUBDIRS="cacheclean forward glue ixfr limits lwresd \
masterfile notify nsupdate resolver sortlist stub tkey \
2003-10-17 03:06:16 -04:00
unknown upforwd views xfer xferquota"
2000-05-15 18:53:15 -04:00
# PERL will be an empty string if no perl interpreter was found.
PERL=@PERL@
export NAMED LWRESD DIG NSUPDATE KEYGEN SIGNER KEYSIGNER KEYSETTOOL PERL \
2000-07-10 13:01:15 -04:00
SUBDIRS RNDC