Merge branch '3270-remove-time-requirement-for-statschannel-truncated-test-v9_18' into 'v9_18'

Remove the time requirement for the statschannel truncated test [v9.18]

See merge request isc-projects/bind9!6953
This commit is contained in:
Ondřej Surý 2022-10-19 13:31:23 +00:00
commit 10a43eba02

View file

@ -451,10 +451,7 @@ i=$((i+1))
done
# send the requests then wait for named to close the socket.
time1=$($PERL -e 'print time(), "\n";')
${PERL} send64k.pl 10.53.0.3 ${EXTRAPORT1} < send.in$n > send.out$n
time2=$($PERL -e 'print time(), "\n";')
test $((time2 - time1)) -lt 5 || ret=1
# we expect 91 of the 500 requests to be processed.
lines=$(grep "^HTTP/1.1" send.out$n | wc -l)
test $lines = 91 || ret=1