From 930353d0af5d2454d817cb1facbd2c9a537bc9fb Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 5 Oct 2023 01:58:41 -0700 Subject: [PATCH] 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 --- tests/libtest/lib1906.c | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.47.2