Commit 719d904e authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

msxml3/tests: Skip some tests when network connection can't be made.

parent 88c4210b
......@@ -2750,6 +2750,12 @@ static void test_XMLHTTP(void)
SysFreeString(str2);
hr = IXMLHttpRequest_send(pXMLHttpRequest, varbody);
if (hr == INET_E_RESOURCE_NOT_FOUND)
{
skip("No connection could be made with crossover.codeweavers.com\n");
IXMLHttpRequest_Release(pXMLHttpRequest);
return;
}
todo_wine ok(hr == S_OK, "IXMLHttpRequest_send should have succeeded instead of failing with 0x%08x\n", hr);
VariantClear(&varbody);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment