[PATCH] urlmon/tests: Fix a test failure on Windows XP.
Signed-off-by: Sven Baars <sven.wine(a)gmail.com> --- dlls/urlmon/tests/url.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/urlmon/tests/url.c b/dlls/urlmon/tests/url.c index 1aef981b83..287eb2702e 100644 --- a/dlls/urlmon/tests/url.c +++ b/dlls/urlmon/tests/url.c @@ -3911,7 +3911,8 @@ static BOOL can_do_https(void) ok(req != NULL, "HttpOpenRequest failed\n"); ret = HttpSendRequestA(req, NULL, 0, NULL, 0); - ok(ret || broken(GetLastError() == ERROR_INTERNET_CANNOT_CONNECT), + ok(ret || broken(GetLastError() == ERROR_INTERNET_CANNOT_CONNECT) + || broken(GetLastError() == ERROR_INTERNET_SECURITY_CHANNEL_ERROR) /* WinXP */, "request failed: %u\n", GetLastError()); InternetCloseHandle(req); -- 2.17.1
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=58025 Your paranoid android. === w8adm (32 bit report) === urlmon: url.c:1484: Test failed: progress 32: status = 200 url.c:1484: Test failed: progress 1: status = 200 url.c:1484: Test failed: progress 2: status = 200 === w864 (32 bit report) === urlmon: url.c:1480: Test failed: progress 2: hres = 1, expected 0 === w1064v1507 (32 bit report) === urlmon: url.c:1484: Test failed: progress 32: status = 200 === w1064v1507 (64 bit report) === urlmon: url.c:1484: Test failed: progress 32: status = 200 === w1064v1809 (64 bit report) === urlmon: url.c:1484: Test failed: progress 32: status = 200
participants (3)
-
Jacek Caban -
Marvin -
Sven Baars