From 2416e912c5fa34d94f8d120766f54434ec375f2f Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Wed, 13 Sep 2023 00:07:25 -0700 Subject: [PATCH] [PATCH] tests: increase the default server logs lock timeout This timeout is used to wait for the server to finish writing its logs before checking them against the expected values. An overloaded machine could take more than the two seconds previously allocated, so increase the timeout to 5 seconds. Ref: #11328 Closes #11834 Gbp-Pq: Name tests_increase_the_default_server_logs_lock_timeout.patch --- tests/runner.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runner.pm b/tests/runner.pm index 0a288c41..8d86bd77 100644 --- a/tests/runner.pm +++ b/tests/runner.pm @@ -126,7 +126,7 @@ our $tortalloc; my %oldenv; # environment variables before test is started my $UNITDIR="./unit"; my $CURLLOG="$LOGDIR/commands.log"; # all command lines run -my $defserverlogslocktimeout = 2; # timeout to await server logs lock removal +my $defserverlogslocktimeout = 5; # timeout to await server logs lock removal my $defpostcommanddelay = 0; # delay between command and postcheck sections my $multiprocess; # nonzero with a separate test runner process -- 2.30.2