mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
advapi32/tests: Skip some tests on Win9x and WinMe.
This commit is contained in:
parent
932544d34c
commit
3912286aad
1 changed files with 5 additions and 0 deletions
|
@ -3284,6 +3284,11 @@ static void test_EqualSid(void)
|
|||
SetLastError(0xdeadbeef);
|
||||
ret = AllocateAndInitializeSid(&SIDAuthNT, 2, SECURITY_BUILTIN_DOMAIN_RID,
|
||||
DOMAIN_ALIAS_RID_ADMINS, 0, 0, 0, 0, 0, 0, &sid1);
|
||||
if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
||||
{
|
||||
win_skip("AllocateAndInitializeSid is not implemented\n");
|
||||
return;
|
||||
}
|
||||
ok(ret, "AllocateAndInitializeSid failed with error %d\n", GetLastError());
|
||||
ok(GetLastError() == 0xdeadbeef,
|
||||
"AllocateAndInitializeSid shouldn't have set last error to %d\n",
|
||||
|
|
Loading…
Reference in a new issue