ole32: Move test for CoGetInterfaceAndReleaseStream to compobj.c.

This commit is contained in:
Rob Shearman 2007-01-09 17:15:02 +00:00 committed by Alexandre Julliard
parent 43d0d85f67
commit d02b27c0e9
2 changed files with 13 additions and 11 deletions

View File

@ -455,6 +455,18 @@ static void test_CoGetPSClsid(void)
CoUninitialize();
}
static void test_CoGetInterfaceAndReleaseStream(void)
{
HRESULT hr;
IUnknown *pUnk;
pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
hr = CoGetInterfaceAndReleaseStream(NULL, &IID_IUnknown, (void**)&pUnk);
ok(hr == E_INVALIDARG, "hr %08x\n", hr);
CoUninitialize();
}
START_TEST(compobj)
{
@ -474,4 +486,5 @@ START_TEST(compobj)
test_CoRegisterMessageFilter();
test_CoRegisterPSClsid();
test_CoGetPSClsid();
test_CoGetInterfaceAndReleaseStream();
}

View File

@ -2150,15 +2150,6 @@ static void test_globalinterfacetable(void)
CloseHandle(thread);
}
static void test_CoGetInterfaceAndReleaseStream(void)
{
HRESULT hr;
IUnknown *pUnk;
hr = CoGetInterfaceAndReleaseStream(NULL, &IID_IUnknown, (void**)&pUnk);
ok(hr == E_INVALIDARG, "hr %08x\n", hr);
}
static const char *debugstr_iid(REFIID riid)
{
static char name[256];
@ -2429,8 +2420,6 @@ START_TEST(marshal)
test_globalinterfacetable();
test_CoGetInterfaceAndReleaseStream();
/* must be last test as channel hooks can't be unregistered */
test_channel_hook();