]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorAndreas Gustafsson <source@isc.org>
Wed, 19 Jul 2000 20:39:01 +0000 (20:39 +0000)
committerAndreas Gustafsson <source@isc.org>
Wed, 19 Jul 2000 20:39:01 +0000 (20:39 +0000)
in the multi-stage positive validation test, allow the
recursive server to omit the authority section

bin/tests/system/dnssec/tests.sh

index 0e15481325e006b15c321067a491d3392cd2fad5..ffde9ff3791b539975abf5f41b7a2d2bfff1b00c 100644 (file)
@@ -15,7 +15,7 @@
 # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 # SOFTWARE.
 
-# $Id: tests.sh,v 1.15.2.4 2000/07/11 00:43:45 bwelling Exp $
+# $Id: tests.sh,v 1.15.2.5 2000/07/19 20:39:01 gson Exp $
 
 #
 # Perform tests
@@ -65,8 +65,8 @@ status=`expr $status + $ret`
 
 echo "I:checking multi-stage positive validation"
 ret=0
-$DIG $DIGOPTS a.secure.example. @10.53.0.3 a > dig.out.ns3.test$n || ret=1
-$DIG $DIGOPTS a.secure.example. @10.53.0.4 a > dig.out.ns4.test$n || ret=1
+$DIG $DIGOPTS +noauth a.secure.example. @10.53.0.3 a > dig.out.ns3.test$n || ret=1
+$DIG $DIGOPTS +noauth a.secure.example. @10.53.0.4 a > dig.out.ns4.test$n || ret=1
 $PERL ../digcomp.pl dig.out.ns3.test$n dig.out.ns4.test$n || ret=1
 n=`expr $n + 1`
 if [ $ret != 0 ]; then echo "I:failed"; fi