[WBEMDISP_WINETEST] Sync with Wine Staging 1.9.16. CORE-11866

svn path=/trunk/; revision=72314
This commit is contained in:
Amine Khaldi 2016-08-18 10:50:44 +00:00
parent 07f4aca553
commit 8ce605cde9

View file

@ -243,9 +243,23 @@ static void test_ParseDisplayName(void)
IParseDisplayName_Release( displayname );
}
static void test_locator(void)
{
IUnknown *locator;
HRESULT hr;
hr = CoCreateInstance( &CLSID_SWbemLocator, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown, (void **)&locator );
ok( hr == S_OK, "got %x\n", hr );
IUnknown_Release( locator );
}
START_TEST(wbemdisp)
{
CoInitialize( NULL );
test_ParseDisplayName();
test_locator();
CoUninitialize();
}