Remove building with NOCRYPTO option
[minix.git] / external / bsd / bind / dist / bin / tests / system / limits / tests.sh
blob634450fd24af3211ec6901a5e2cec4023abb7ffb
1 #!/bin/sh
3 # Copyright (C) 2004, 2007, 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
4 # Copyright (C) 2000, 2001 Internet Software Consortium.
6 # Permission to use, copy, modify, and/or distribute this software for any
7 # purpose with or without fee is hereby granted, provided that the above
8 # copyright notice and this permission notice appear in all copies.
10 # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11 # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12 # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13 # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14 # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 # PERFORMANCE OF THIS SOFTWARE.
18 # Id: tests.sh,v 1.19 2011/11/04 23:46:15 tbox Exp
20 SYSTEMTESTTOP=..
21 . $SYSTEMTESTTOP/conf.sh
23 status=0
25 echo "I:1000 A records"
26 $DIG +tcp +norec 1000.example. @10.53.0.1 a -p 5300 > dig.out.1000 || status=1
27 #dig 1000.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.1000
28 $PERL ../digcomp.pl knowngood.dig.out.1000 dig.out.1000 || status=1
30 echo "I:2000 A records"
31 $DIG +tcp +norec 2000.example. @10.53.0.1 a -p 5300 > dig.out.2000 || status=1
32 #dig 2000.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.2000
33 $PERL ../digcomp.pl knowngood.dig.out.2000 dig.out.2000 || status=1
35 echo "I:3000 A records"
36 $DIG +tcp +norec 3000.example. @10.53.0.1 a -p 5300 > dig.out.3000 || status=1
37 #dig 3000.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.3000
38 $PERL ../digcomp.pl knowngood.dig.out.3000 dig.out.3000 || status=1
40 echo "I:4000 A records"
41 $DIG +tcp +norec 4000.example. @10.53.0.1 a -p 5300 > dig.out.4000 || status=1
42 #dig 4000.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.4000
43 $PERL ../digcomp.pl knowngood.dig.out.4000 dig.out.4000 || status=1
45 echo "I:exactly maximum rrset"
46 $DIG +tcp +norec +noedns a-maximum-rrset.example. @10.53.0.1 a -p 5300 > dig.out.a-maximum-rrset \
47 || status=1
48 #dig a-maximum-rrset.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.a-maximum-rrset
49 $PERL ../digcomp.pl knowngood.dig.out.a-maximum-rrset dig.out.a-maximum-rrset || status=1
51 echo "I:exceed maximum rrset (5000 A records)"
52 $DIG +tcp +norec +noadd 5000.example. @10.53.0.1 a -p 5300 > dig.out.exceed || status=1
53 # Look for truncation bit (tc).
54 grep 'flags: .*tc.*;' dig.out.exceed > /dev/null || {
55 echo "I:TC bit was not set"
56 status=1
59 echo "I:exit status: $status"
60 exit $status