]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
the dynamic zone test wasn't working as expected since the child zone wasn't
authorBrian Wellington <source@isc.org>
Wed, 6 Feb 2002 03:28:59 +0000 (03:28 +0000)
committerBrian Wellington <source@isc.org>
Wed, 6 Feb 2002 03:28:59 +0000 (03:28 +0000)
securely delegated.

bin/tests/system/dnssec/ns2/sign.sh
bin/tests/system/dnssec/tests.sh

index dc6e710a94cca97d43b821ef4edc3dd2cad4abdd..7de73cab3adbe243d9a54ebb0a5b73df66ee725a 100644 (file)
@@ -15,7 +15,7 @@
 # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
 # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: sign.sh,v 1.17 2002/01/22 22:27:27 gson Exp $
+# $Id: sign.sh,v 1.18 2002/02/06 03:28:59 bwelling Exp $
 
 SYSTEMTESTTOP=../..
 . $SYSTEMTESTTOP/conf.sh
@@ -33,7 +33,7 @@ keyname=`$KEYGEN -r $RANDFILE -a DSA -b 768 -n zone $zone`
 
 ( cd ../ns3 && sh sign.sh )
 
-for subdomain in secure bogus
+for subdomain in secure bogus dynamic
 do
        cp ../ns3/keyset-$subdomain.example. .
 
index f987d7d64bb4e7c178456e4c8b7a9337a32c5160..bd3d8fbc5947cff2d09ea6f7ff673491b2018ae5 100644 (file)
@@ -15,7 +15,7 @@
 # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
 # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: tests.sh,v 1.36 2002/01/22 22:27:24 gson Exp $
+# $Id: tests.sh,v 1.37 2002/02/06 03:28:58 bwelling Exp $
 
 SYSTEMTESTTOP=..
 . $SYSTEMTESTTOP/conf.sh
@@ -309,8 +309,7 @@ ret=0
 $DIG $DIGOPTS +noauth dynamic.example. SOA @10.53.0.3 > dig.out.ns3.test$n || ret=1
 $DIG $DIGOPTS +noauth dynamic.example. SOA @10.53.0.4 > dig.out.ns4.test$n || ret=1
 $PERL ../digcomp.pl dig.out.ns3.test$n dig.out.ns4.test$n || ret=1
-# XXX why does this fail?
-# grep "flags:.*ad.*QUERY" dig.out.ns4.test$n > /dev/null || ret=1
+grep "flags:.*ad.*QUERY" dig.out.ns4.test$n > /dev/null || ret=1
 n=`expr $n + 1`
 if [ $ret != 0 ]; then echo "I:failed"; fi
 status=`expr $status + $ret`