From: Dan Fandrich Date: Thu, 5 Oct 2023 08:58:41 +0000 (-0700) Subject: test1906: set a lower timeout since it's hit on Windows X-Git-Tag: curl-8_4_0~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=930353d0af5d2454d817cb1facbd2c9a537bc9fb;p=thirdparty%2Fcurl.git test1906: set a lower timeout since it's hit on Windows msys2 builds actually hit the connect timeout in normal operation, so lower the timeout from 5 minutes to 5 seconds to reduce test time. Ref: #11328 Closes #12036 --- diff --git a/tests/libtest/lib1906.c b/tests/libtest/lib1906.c index 02e8a31a72..b60587f8fa 100644 --- a/tests/libtest/lib1906.c +++ b/tests/libtest/lib1906.c @@ -41,6 +41,8 @@ int test(char *URL) easy_setopt(curl, CURLOPT_CURLU, curlu); easy_setopt(curl, CURLOPT_ERRORBUFFER, error_buffer); easy_setopt(curl, CURLOPT_VERBOSE, 1L); + /* msys2 times out instead of CURLE_COULDNT_CONNECT, so make it faster */ + easy_setopt(curl, CURLOPT_CONNECTTIMEOUT_MS, 5000L); /* set a port number that makes this request fail */ easy_setopt(curl, CURLOPT_PORT, 1L); res = curl_easy_perform(curl);