From: Chris Hofstaedtler Date: Mon, 27 Nov 2017 14:09:10 +0000 (+0100) Subject: regression-tests.recursor-dnssec: make this somewhat usable on macOS X-Git-Tag: dnsdist-1.3.0~152^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=025d939d58d7e160de0c5058d8d15251dc0f21f8;p=thirdparty%2Fpdns.git regression-tests.recursor-dnssec: make this somewhat usable on macOS --- diff --git a/regression-tests.recursor-dnssec/runtests b/regression-tests.recursor-dnssec/runtests index 840b045f93..9682f92eb6 100755 --- a/regression-tests.recursor-dnssec/runtests +++ b/regression-tests.recursor-dnssec/runtests @@ -17,13 +17,29 @@ export PDNS=${PDNS:-${PWD}/../pdns/pdns_server} export PDNSUTIL=${PDNSUTIL:-${PWD}/../pdns/pdnsutil} export PDNSRECURSOR=${PDNSRECURSOR:-${PWD}/../pdns/recursordist/pdns_recursor} export RECCONTROL=${RECCONTROL:-${PWD}/../pdns/recursordist/rec_control} -export LIBFAKETIME=${LIBFAKETIME:-/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1} # ubuntu default + +LIBFAKETIME_DEFAULT=/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1 # ubuntu default +LIBAUTHBIND_DEFAULT=/usr/lib/authbind/libauthbind.so.1 +if [ $(uname -s) = "Darwin" ]; then + # macOS is not /really/ supported here; it works for some tests, and then you might need sudo. + LIBFAKETIME_DEFAULT=/usr/local/lib/faketime/libfaketime.1.dylib + LIBAUTHBIND_DEFAULT="" +fi + +export LIBFAKETIME=${LIBFAKETIME:-$LIBFAKETIME_DEFAULT} +export LIBAUTHBIND=${LIBAUTHBIND:-$LIBAUTHBIND_DEFAULT} export PREFIX=127.0.0 +for bin in "$PDNS" "$PDNSUTIL" "$PDNSRECURSOR" "$RECCONTROL" "$LIBFAKETIME" "$LIBAUTHBIND"; do + if [ -n "$bin" -a ! -e "$bin" ]; then + echo "E: Required binary $bin not found. Please install the binary and/or edit ./vars." + exit 1 + fi +done set -e if [ "${PDNS_DEBUG}" = "YES" ]; then set -x fi -LD_PRELOAD="/usr/lib/authbind/libauthbind.so.1 ${LIBFAKETIME}" nosetests -I test_WellKnown.py --with-xunit $@ +LD_PRELOAD="${LIBAUTHBIND} ${LIBFAKETIME}" nosetests -I test_WellKnown.py --with-xunit $@