Commit 9a97360e authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Remove test that fails on Win98 and is not useful.

parent e4a44b35
...@@ -1128,13 +1128,6 @@ static void test_proxy_interfaces() ...@@ -1128,13 +1128,6 @@ static void test_proxy_interfaces()
IUnknown *pOtherUnknown = NULL; IUnknown *pOtherUnknown = NULL;
DWORD tid; DWORD tid;
HANDLE thread; HANDLE thread;
static const IID IID_IMarshal2 =
{
0x000001cf,
0x0000,
0x0000,
{ 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46 }
};
cLocks = 0; cLocks = 0;
...@@ -1167,9 +1160,8 @@ static void test_proxy_interfaces() ...@@ -1167,9 +1160,8 @@ static void test_proxy_interfaces()
todo_wine { ok_ole_success(hr, IUnknown_QueryInterface IID_IMarshal); } todo_wine { ok_ole_success(hr, IUnknown_QueryInterface IID_IMarshal); }
if (hr == S_OK) IUnknown_Release(pOtherUnknown); if (hr == S_OK) IUnknown_Release(pOtherUnknown);
hr = IUnknown_QueryInterface(pProxy, &IID_IMarshal2, (LPVOID*)&pOtherUnknown); /* IMarshal2 is also supported on NT-based systems, but is pretty much
todo_wine { ok_ole_success(hr, IUnknown_QueryInterface IID_IMarshal2); } * useless as it has no more methods over IMarshal that it inherits from. */
if (hr == S_OK) IUnknown_Release(pOtherUnknown);
IUnknown_Release(pProxy); IUnknown_Release(pProxy);
......
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