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
This commit is contained in:
Dan Fandrich 2023-10-05 01:58:41 -07:00
parent 5ee0b9dd6e
commit 930353d0af

View File

@ -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);