From 4db847e80e796c43d80a23e1613c246a3586ceac Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 5 Jul 2022 13:05:58 +1000 Subject: [PATCH] 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. --- bin/tests/system/cds/checktime.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/cds/checktime.pl b/bin/tests/system/cds/checktime.pl index b7e5e5236a..d85fd9125c 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;