mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
wbemprox/tests: Run StdRegProv tests using ROOT\\DEFAULT connection point.
StdRegProv is not available on ROOT\\CIMV2 for unknown reason on some Windows configs. Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3cd5c35525
commit
a45f6a49f7
1 changed files with 13 additions and 0 deletions
|
@ -1824,6 +1824,19 @@ START_TEST(query)
|
|||
test_Win32_VideoController( services );
|
||||
test_Win32_WinSAT( services );
|
||||
|
||||
SysFreeString( path );
|
||||
IWbemServices_Release( services );
|
||||
|
||||
/* Some tests need other connection point */
|
||||
path = SysAllocString( L"ROOT\\DEFAULT" );
|
||||
hr = IWbemLocator_ConnectServer( locator, path, NULL, NULL, NULL, 0, NULL, NULL, &services );
|
||||
ok( hr == S_OK, "failed to get IWbemServices interface %08x\n", hr );
|
||||
hr = CoSetProxyBlanket( (IUnknown *)services, RPC_C_AUTHN_WINNT, RPC_C_AUTHZ_NONE, NULL,
|
||||
RPC_C_AUTHN_LEVEL_CALL, RPC_C_IMP_LEVEL_IMPERSONATE, NULL, EOAC_NONE );
|
||||
ok( hr == S_OK, "failed to set proxy blanket %08x\n", hr );
|
||||
|
||||
test_StdRegProv( services );
|
||||
|
||||
SysFreeString( path );
|
||||
IWbemServices_Release( services );
|
||||
IWbemLocator_Release( locator );
|
||||
|
|
Loading…
Reference in a new issue