From 4d5ef037239d54f1430b4f44e4f57909068bbcbf Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 28 Nov 2012 12:05:56 +1100 Subject: [PATCH] adjust looping threshold from 10 to 15 --- bin/tests/system/dnssec/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/dnssec/tests.sh b/bin/tests/system/dnssec/tests.sh index 892ecda151..7403d1c9a7 100644 --- a/bin/tests/system/dnssec/tests.sh +++ b/bin/tests/system/dnssec/tests.sh @@ -1285,7 +1285,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`