msxml3/tests: Fix tests failures with unreachable network resources.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
20e36dcb1b
commit
44705156b5
|
@ -1295,7 +1295,6 @@ static HRESULT WINAPI dispevent_Invoke(IDispatch *iface, DISPID member, REFIID r
|
||||||
|
|
||||||
hr = IXMLHttpRequest_get_responseText(httpreq, &text);
|
hr = IXMLHttpRequest_get_responseText(httpreq, &text);
|
||||||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||||
ok(*text != 0, "got %s\n", wine_dbgstr_w(text));
|
|
||||||
SysFreeString(text);
|
SysFreeString(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1798,7 +1797,7 @@ static void test_server_xhr(void)
|
||||||
V_VT(&body) = VT_EMPTY;
|
V_VT(&body) = VT_EMPTY;
|
||||||
|
|
||||||
hr = IServerXMLHTTPRequest_send(xhr, body);
|
hr = IServerXMLHTTPRequest_send(xhr, body);
|
||||||
if (hr == INET_E_RESOURCE_NOT_FOUND)
|
if (hr == INET_E_RESOURCE_NOT_FOUND || hr == WININET_E_NAME_NOT_RESOLVED)
|
||||||
{
|
{
|
||||||
skip("No connection could be made with test.winehq.org\n");
|
skip("No connection could be made with test.winehq.org\n");
|
||||||
IServerXMLHTTPRequest_Release(xhr);
|
IServerXMLHTTPRequest_Release(xhr);
|
||||||
|
|
Loading…
Reference in New Issue