]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
remove inline-signing test from 9.8 v9.8.3-P1
authorEvan Hunt <each@isc.org>
Fri, 1 Jun 2012 16:00:38 +0000 (09:00 -0700)
committerEvan Hunt <each@isc.org>
Fri, 1 Jun 2012 16:00:38 +0000 (09:00 -0700)
bin/tests/system/unknown/ns3/named.conf [deleted file]
bin/tests/system/unknown/ns3/sign.sh [deleted file]
bin/tests/system/unknown/setup.sh
bin/tests/system/unknown/tests.sh

diff --git a/bin/tests/system/unknown/ns3/named.conf b/bin/tests/system/unknown/ns3/named.conf
deleted file mode 100644 (file)
index e77d9e4..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
- * Copyright (C) 2000, 2001  Internet Software Consortium.
- *
- * Permission to use, copy, modify, and/or distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
-
-/* $Id: named.conf,v 1.11 2007/06/19 23:47:06 tbox Exp $ */
-
-controls { /* empty */ };
-
-options {
-       query-source address 10.53.0.3;
-       notify-source 10.53.0.3;
-       transfer-source 10.53.0.3;
-       port 5300;
-       pid-file "named.pid";
-       listen-on { 10.53.0.3; };
-       listen-on-v6 { none; };
-       recursion no;
-       notify no;
-};
-
-view "in" {
-       zone "example." {
-               type slave;
-               masters { 10.53.0.1; };
-               inline-signing yes;
-               auto-dnssec maintain;
-               file "example-in.bk";
-       };
-};
diff --git a/bin/tests/system/unknown/ns3/sign.sh b/bin/tests/system/unknown/ns3/sign.sh
deleted file mode 100644 (file)
index f4451ed..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh -e
-#
-# Copyright (C) 2011, 2012  Internet Systems Consortium, Inc. ("ISC")
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
-# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
-# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
-# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THIS SOFTWARE.
-
-# $Id: sign.sh,v 1.8 2012/02/23 06:53:15 marka Exp $
-
-SYSTEMTESTTOP=../..
-. $SYSTEMTESTTOP/conf.sh
-
-RANDFILE=../random.data
-
-zone=example
-rm -f K${zone}.+*+*.key
-rm -f K${zone}.+*+*.private
-keyname=`$KEYGEN -q -r $RANDFILE -a RSASHA1 -b 768 -n zone $zone`
-keyname=`$KEYGEN -q -r $RANDFILE -a RSASHA1 -b 1024 -n zone -f KSK $zone`
index 76de5963f7a57d98929844c783b19356f3a8aa58..613c0fea83c288d510e14b4f175088dbe4d7abb2 100644 (file)
@@ -17,5 +17,3 @@
 sh clean.sh
 
 ../../../tools/genrandom 400 random.data
-
-(cd ns3; sh -e sign.sh)
index 4d635c41db7e688731d015b148764fd7c72783ab..3b2fe4786d208d8e7aaaa73517be342963f7906d 100644 (file)
@@ -154,23 +154,5 @@ diff -s large.out dig.out > /dev/null || { ret=1 ; echo "I: diff failed"; }
 [ $ret = 0 ] || echo "I: failed"
 status=`expr $status + $ret`
 
-echo "I:checking large unknown record loading on inline slave"
-ret=0
-$DIG $DIGOPTS @10.53.0.3 +tcp +short large.example TYPE45234 > dig.out || { ret=1 ; echo I: dig failed ; }
-diff large.out dig.out > /dev/null || { ret=1 ; echo "I: diff failed"; }
-[ $ret = 0 ] || echo "I: failed"
-status=`expr $status + $ret`
-
-echo "I:stop and restart inline slave"
-$PERL $SYSTEMTESTTOP/stop.pl . ns3
-$PERL $SYSTEMTESTTOP/start.pl --noclean --restart . ns3
-
-echo "I:checking large unknown record loading on inline slave"
-ret=0
-$DIG $DIGOPTS @10.53.0.3 +tcp +short large.example TYPE45234 > dig.out || { ret=1 ; echo I: dig failed ; }
-diff large.out dig.out > /dev/null || { ret=1 ; echo "I: diff failed"; }
-[ $ret = 0 ] || echo "I: failed"
-status=`expr $status + $ret`
-
 echo "I:exit status: $status"
 exit $status