]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tests: quadruple the %FTPTIME2 and %FTPTIME3 timeouts
authorDan Fandrich <dan@coneharvesters.com>
Wed, 6 Sep 2023 20:38:53 +0000 (13:38 -0700)
committerDan Fandrich <dan@coneharvesters.com>
Wed, 13 Sep 2023 18:26:07 +0000 (11:26 -0700)
This gives more of a margin for error when running on overloaded CI
servers.

Ref: #11328

tests/servers.pm

index 00753090f3fe7b8ae70b478bb4dd8324151f8fed..4f67432c6d487461a5ceb8dab01ad813a6d620b3 100644 (file)
@@ -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;