]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
don't call out to the internet when running test
authorMark Andrews <marka@isc.org>
Thu, 30 Aug 2012 03:53:41 +0000 (13:53 +1000)
committerMark Andrews <marka@isc.org>
Thu, 30 Aug 2012 03:54:23 +0000 (13:54 +1000)
bin/tests/system/checkzone/tests.sh

index ce744e0603d390b4853cc5a76272e13e0fdad003..a8e1825a28a9b3bf3eca550909863f2a227aaa30 100644 (file)
@@ -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`