From: Dan Fandrich Date: Wed, 6 Sep 2023 20:38:53 +0000 (-0700) Subject: tests: quadruple the %FTPTIME2 and %FTPTIME3 timeouts X-Git-Tag: curl-8_4_0~214 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9db7f17135144039f6c201e136f8876fe522ff68;p=thirdparty%2Fcurl.git tests: quadruple the %FTPTIME2 and %FTPTIME3 timeouts This gives more of a margin for error when running on overloaded CI servers. Ref: #11328 --- diff --git a/tests/servers.pm b/tests/servers.pm index 00753090f3..4f67432c6d 100644 --- a/tests/servers.pm +++ b/tests/servers.pm @@ -2988,8 +2988,8 @@ sub subvariables { # used for time-out tests and that would work on most hosts as these # adjust for the startup/check time for this particular host. We needed to # do this to make the test suite run better on very slow hosts. - my $ftp2 = $ftpchecktime * 2; - my $ftp3 = $ftpchecktime * 3; + my $ftp2 = $ftpchecktime * 8; + my $ftp3 = $ftpchecktime * 12; $$thing =~ s/${prefix}FTPTIME2/$ftp2/g; $$thing =~ s/${prefix}FTPTIME3/$ftp3/g;