]> 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:53:41 +0000 (13:53 +1000)
bin/tests/system/checkzone/tests.sh

index d7b7b8ead8c02ebe80858bea8ea2696c8e25bb98..b50722b7a2482b4474aa9410c63a6a89ffb6c597 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`