From: Mark Andrews Date: Thu, 30 Aug 2012 03:53:41 +0000 (+1000) Subject: don't call out to the internet when running test X-Git-Tag: v9.10.0a1~907 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=d0522678a12b3a3a430bfb48839b3d8c70cadf49;p=thirdparty%2Fbind9.git don't call out to the internet when running test --- diff --git a/bin/tests/system/checkzone/tests.sh b/bin/tests/system/checkzone/tests.sh index d7b7b8ead8c..b50722b7a24 100644 --- a/bin/tests/system/checkzone/tests.sh +++ b/bin/tests/system/checkzone/tests.sh @@ -24,7 +24,7 @@ for db in zones/good*.db do echo "I:checking $db ($n)" ret=0 - $CHECKZONE example $db > test.out.$n 2>&1 || ret=1 + $CHECKZONE -i local example $db > test.out.$n 2>&1 || ret=1 n=`expr $n + 1` if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret`