mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[SCHANNEL_WINETEST] Sync with Wine Staging 3.3. CORE-14434
This commit is contained in:
parent
b5f897f219
commit
e1d57446f8
1 changed files with 7 additions and 2 deletions
|
@ -213,12 +213,17 @@ static void testGetInfo(void)
|
|||
pTables = getNextSecPkgTable(pTables, Version);
|
||||
if (!pTables)
|
||||
return;
|
||||
if (!pTables->GetInfo)
|
||||
{
|
||||
win_skip("GetInfo function missing\n");
|
||||
return;
|
||||
}
|
||||
status = pTables->GetInfo(&PackageInfo);
|
||||
ok(status == STATUS_SUCCESS ||
|
||||
ok(SUCCEEDED(status) ||
|
||||
status == SEC_E_UNSUPPORTED_FUNCTION, /* win2k3 */
|
||||
"status: 0x%x\n", status);
|
||||
|
||||
if (status == STATUS_SUCCESS)
|
||||
if (SUCCEEDED(status))
|
||||
{
|
||||
ok(PackageInfo.fCapabilities == LSA_BASE_CAPS ||
|
||||
PackageInfo.fCapabilities == (LSA_BASE_CAPS|SECPKG_FLAG_APPCONTAINER_PASSTHROUGH),
|
||||
|
|
Loading…
Reference in a new issue