Commit 307b9fb6 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

xmllite/tests: Remove some tests that make Vista SP0 crash.

parent 89092c92
......@@ -176,7 +176,6 @@ static void test_reader_create(void)
{
HRESULT hr;
IXmlReader *reader;
IMalloc *imalloc;
IUnknown *input;
/* crashes native */
......@@ -189,12 +188,6 @@ static void test_reader_create(void)
hr = pCreateXmlReader(&IID_IXmlReader, (LPVOID*)&reader, NULL);
ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
hr = CoGetMalloc(1, &imalloc);
ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
hr = IMalloc_DidAlloc(imalloc, reader);
ok(hr != 1, "Expected 0 or -1, got %08x\n", hr);
/* Null input pointer, releases previous input */
hr = IXmlReader_SetInput(reader, NULL);
ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
......
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