Module: wine Branch: master Commit: 8f289c821e985a332be5616cac3d381f5007f120 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8f289c821e985a332be5616cac...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Feb 6 15:56:25 2014 +0100
urlmon/tests: Use test.winehq.org for https protocol tests.
---
dlls/urlmon/tests/protocol.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/dlls/urlmon/tests/protocol.c b/dlls/urlmon/tests/protocol.c index 3358506..a8f8d7a 100644 --- a/dlls/urlmon/tests/protocol.c +++ b/dlls/urlmon/tests/protocol.c @@ -574,6 +574,8 @@ static void call_continue(PROTOCOLDATA *protocol_data) { HRESULT hres;
+ trace("continue in state %d\n", state); + if(state == STATE_CONNECTING) { if(tested_protocol == HTTP_TEST || tested_protocol == HTTPS_TEST || tested_protocol == FTP_TEST) { if (http_is_first){ @@ -3192,13 +3194,13 @@ static void test_http_protocol(void)
static void test_https_protocol(void) { - static const WCHAR codeweavers_url[] = - {'h','t','t','p','s',':','/','/','w','w','w','.','c','o','d','e','w','e','a','v','e','r','s', - '.','c','o','m','/','t','e','s','t','.','h','t','m','l',0}; + static const WCHAR https_winehq_url[] = + {'h','t','t','p','s',':','/','/','t','e','s','t','.','w','i','n','e','h','q','.','o','r','g','/', + 't','e','s','t','s','/','h','e','l','l','o','.','h','t','m','l',0};
trace("Testing https protocol (from urlmon)...\n"); bindf = BINDF_ASYNCHRONOUS | BINDF_ASYNCSTORAGE | BINDF_PULLDATA | BINDF_FROMURLMON | BINDF_NOWRITECACHE; - test_http_protocol_url(codeweavers_url, HTTPS_TEST, TEST_FIRST_HTTP, TYMED_NULL); + test_http_protocol_url(https_winehq_url, HTTPS_TEST, TEST_FIRST_HTTP, TYMED_NULL); }