2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Merge branch '2983-fix-doth-system-test' into 'main'

Resolve #2983: Increase startup timeout for servers in system tests

Closes #2983

See merge request isc-projects/bind9!5609
This commit is contained in:
Artem Boldariev
2021-12-01 14:06:16 +00:00

View File

@@ -202,12 +202,12 @@ sub start_server {
my $child = `$command`;
chomp($child);
# wait up to 25 seconds for the server to start and to write the
# wait up to 40 seconds for the server to start and to write the
# pid file otherwise kill this server and any others that have
# already been started
my $tries = 0;
while (!-s $pid_file) {
if (++$tries > 250) {
if (++$tries > 400) {
print "I:$test:Couldn't start server $command (pid=$child)\n";
print "I:$test:failed\n";
kill "ABRT", $child if ("$child" ne "");