mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-14 08:30:00 -04:00
4061. [bug] Handle timeout in legacy system test. [RT #38573]
(cherry picked from commit 2ff2145ff5)
This commit is contained in:
parent
bc6ec8a625
commit
bc52858a67
2 changed files with 4 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,5 +1,7 @@
|
|||
--- 9.10.2rc2 released ---
|
||||
|
||||
4061. [bug] Handle timeout in legacy system test. [RT #38573]
|
||||
|
||||
4060. [bug] dns_rdata_freestruct could be call on a uninitialised
|
||||
structure when handling a error. [RT #38568]
|
||||
|
||||
|
|
|
|||
|
|
@ -159,7 +159,8 @@ then
|
|||
echo "I:checking recursive lookup to edns 512 + no tcp + trust anchor fails ($n)"
|
||||
ret=0
|
||||
$DIG +tcp @10.53.0.1 -p 5300 edns512-notcp soa > dig.out.test$n || ret=1
|
||||
grep "status: SERVFAIL" dig.out.test$n > /dev/null || ret=1
|
||||
grep "status: SERVFAIL" dig.out.test$n > /dev/null ||
|
||||
grep "connection timed out;" dig.out.test$n > /dev/null || ret=1
|
||||
if [ $ret != 0 ]; then echo "I:failed"; fi
|
||||
status=`expr $status + $ret`
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue