From: Mark Andrews Date: Tue, 5 Jul 2022 03:05:58 +0000 (+1000) Subject: Increase the amount of time allowed for signing to occur in X-Git-Tag: v9.19.3~9^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4db847e80e796c43d80a23e1613c246a3586ceac;p=thirdparty%2Fbind9.git Increase the amount of time allowed for signing to occur in On slow systems we have seen this take 9 seconds. Increased the allowance from 3 seconds to 10 seconds to reduce the probabilty of a false negative from the system test. --- diff --git a/bin/tests/system/cds/checktime.pl b/bin/tests/system/cds/checktime.pl index b7e5e5236a2..d85fd9125c4 100644 --- a/bin/tests/system/cds/checktime.pl +++ b/bin/tests/system/cds/checktime.pl @@ -24,4 +24,4 @@ while (<>) { die "missing notbefore time" unless $notbefore; die "missing inception time" unless $inception; my $delta = $inception - $notbefore; -die "bad inception time $delta" unless abs($delta - $target) <= 3; +die "bad inception time $delta" unless abs($delta - $target) <= 10;