From: Mark Andrews Date: Wed, 28 Nov 2012 01:05:56 +0000 (+1100) Subject: adjust looping threshold from 10 to 15 X-Git-Tag: v9.10.0a1~701 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=53e52b463e409e88de9dc67007741f5dcb4db386;p=thirdparty%2Fbind9.git adjust looping threshold from 10 to 15 --- diff --git a/bin/tests/system/dnssec/tests.sh b/bin/tests/system/dnssec/tests.sh index 6887683e5ce..a6cb09aff82 100644 --- a/bin/tests/system/dnssec/tests.sh +++ b/bin/tests/system/dnssec/tests.sh @@ -1960,7 +1960,7 @@ status=`expr $status + $ret` echo "I:check that named doesn't loop when all private keys are not available ($n)" ret=0 lines=`grep "reading private key file expiring.example" ns3/named.run | wc -l` -test ${lines:-1000} -lt 10 || ret=1 +test ${lines:-1000} -lt 15 || ret=1 n=`expr $n + 1` if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret`