]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tests: remove the %FTPTIME3 variable
authorDaniel Stenberg <daniel@haxx.se>
Thu, 26 Sep 2024 14:46:49 +0000 (16:46 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 26 Sep 2024 21:25:47 +0000 (23:25 +0200)
Nothing uses it.

Ref: #15056
Closes #15064

tests/FILEFORMAT.md
tests/servers.pm

index fc773b6a280ff1a3e05ee10b3172ae8dc087189e..67f36613d952eafa339c4b98a7f78fcb6ec953c8 100644 (file)
@@ -132,7 +132,6 @@ Available substitute variables include:
 - `%FTPSPORT` - Port number of the FTPS server
 - `%FTPTIME2` - Timeout in seconds that should be just sufficient to receive a
   response from the test FTP server
-- `%FTPTIME3` - Even longer than `%FTPTIME2`
 - `%GOPHER6PORT` - IPv6 port number of the Gopher server
 - `%GOPHERPORT` - Port number of the Gopher server
 - `%GOPHERSPORT` - Port number of the Gophers server
index 87a11079d4052b14c9b263add662aeb1fd69e5cb..14ffca23bda9693b1b501a61ebb306731497b200 100644 (file)
@@ -3031,15 +3031,13 @@ sub subvariables {
     $$thing =~ s/${prefix}SSHSRVMD5/$SSHSRVMD5/g;
     $$thing =~ s/${prefix}SSHSRVSHA256/$SSHSRVSHA256/g;
 
-    # The purpose of FTPTIME2 and FTPTIME3 is to provide times that can be
+    # The purpose of FTPTIME2 is to provide times that can be
     # 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 * 8;
-    my $ftp3 = $ftpchecktime * 12;
 
     $$thing =~ s/${prefix}FTPTIME2/$ftp2/g;
-    $$thing =~ s/${prefix}FTPTIME3/$ftp3/g;
 
     # HTTP2
     $$thing =~ s/${prefix}H2CVER/$h2cver/g;