msxml3/tests: Skip some tests when network connection can't be made.
This commit is contained in:
parent
88c4210b4a
commit
719d904e35
@ -2750,6 +2750,12 @@ static void test_XMLHTTP(void)
|
|||||||
SysFreeString(str2);
|
SysFreeString(str2);
|
||||||
|
|
||||||
hr = IXMLHttpRequest_send(pXMLHttpRequest, varbody);
|
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);
|
todo_wine ok(hr == S_OK, "IXMLHttpRequest_send should have succeeded instead of failing with 0x%08x\n", hr);
|
||||||
VariantClear(&varbody);
|
VariantClear(&varbody);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user