From: Evan Hunt Date: Mon, 12 Dec 2016 20:12:40 +0000 (-0800) Subject: [master] tweak logfileconfig test so it can pass on slower machines X-Git-Tag: v9.12.0a1~611 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=76a26842a9a3e0159fa80c30a04538838e676339;p=thirdparty%2Fbind9.git [master] tweak logfileconfig test so it can pass on slower machines --- diff --git a/bin/tests/system/logfileconfig/tests.sh b/bin/tests/system/logfileconfig/tests.sh index 522256b003f..85ad115408b 100644 --- a/bin/tests/system/logfileconfig/tests.sh +++ b/bin/tests/system/logfileconfig/tests.sh @@ -309,9 +309,9 @@ $myRNDC reconfig > rndc.out.test$n 2>&1 $DIG version.bind txt ch @10.53.0.1 -p 5300 > dig.out.test$n t2=`$PERL -e 'print time()."\n";'` t=`expr ${t2:-0} - ${t1:-0}` -if test ${t:-1000} -gt 1 +if test ${t:-1000} -gt 5 then - echo "I: testing explict versions failed cleanup of old entries took too long" + echo "I: testing explict versions failed cleanup of old entries took too long ($t secs)" status=`expr $status + 1` fi if ! grep "status: NOERROR" dig.out.test$n > /dev/null @@ -345,9 +345,9 @@ $myRNDC reconfig > rndc.out.test$n 2>&1 $DIG version.bind txt ch @10.53.0.1 -p 5300 > dig.out.test$n t2=`$PERL -e 'print time()."\n";'` t=`expr ${t2:-0} - ${t1:-0}` -if test ${t:-1000} -gt 1 +if test ${t:-1000} -gt 5 then - echo "I: testing unlimited versions failed took too long" + echo "I: testing unlimited versions failed took too long ($t secs)" status=`expr $status + 1` fi if ! grep "status: NOERROR" dig.out.test$n > /dev/null