[PATCH 2/3] msxml3/tests: Fix a failing test on win 8.

Huw Davies huw at codeweavers.com
Tue May 13 03:20:50 CDT 2014


---
 dlls/msxml3/tests/schema.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msxml3/tests/schema.c b/dlls/msxml3/tests/schema.c
index 1145bd5..484be86 100644
--- a/dlls/msxml3/tests/schema.c
+++ b/dlls/msxml3/tests/schema.c
@@ -1522,7 +1522,7 @@ static void test_get(void)
     EXPECT_HR(hr, E_NOTIMPL);
 
     hr = IXMLDOMSchemaCollection2_get(cache, _bstr_("uri"), &node);
-    EXPECT_HR(hr, E_NOTIMPL);
+    ok(hr == E_NOTIMPL || hr == E_POINTER /* win8 */, "got %08x\n", hr);
 
     IXMLDOMSchemaCollection2_Release(cache);
 
-- 
1.8.0




More information about the wine-patches mailing list