2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

test that lowercase hex characters are accepted

This commit is contained in:
Brian Wellington
2000-11-19 20:59:18 +00:00
parent fb1ee7bee0
commit c24821e142
2 changed files with 4 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
; NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
; WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
; $Id: example-in.db,v 1.1 2000/11/10 03:05:54 bwelling Exp $
; $Id: example-in.db,v 1.2 2000/11/19 20:59:18 bwelling Exp $
$TTL 300 ; 5 minutes
@ SOA mname1. . (
@@ -36,6 +36,7 @@ a7 CLASS1 TYPE1 10.0.0.1
a8 CLASS1 TYPE1 \# 4 0A000001
a9 IN TYPE1 10.0.0.1
a10 IN TYPE1 \# 4 0A000001
a11 IN TYPE1 \# 4 0a000001
txt1 IN TXT "hello"
txt2 CLASS1 TXT "hello"

View 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.3 2000/11/18 02:57:22 bwelling Exp $
# $Id: tests.sh,v 1.4 2000/11/19 20:59:17 bwelling Exp $
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
@@ -29,7 +29,7 @@ status=0
DIGOPTS="@10.53.0.1 -p 5300"
echo "I:querying for various representations of an IN A record"
for i in 1 2 3 4 5 6 7 8 9 10
for i in 1 2 3 4 5 6 7 8 9 10 11
do
ret=0
$DIG +short $DIGOPTS a$i.example a in > dig.out || ret=1