Commit ccd5cdad authored by Alexandre Julliard's avatar Alexandre Julliard

Mark as todo a couple of tests that currently fail.

parent b1f61804
...@@ -518,14 +518,14 @@ static void test_AccessCheck(void) ...@@ -518,14 +518,14 @@ static void test_AccessCheck(void)
ret = AccessCheck(SecurityDescriptor, Token, KEY_READ, &Mapping, ret = AccessCheck(SecurityDescriptor, Token, KEY_READ, &Mapping,
PrivSet, &PrivSetLen, &Access, &AccessStatus); PrivSet, &PrivSetLen, &Access, &AccessStatus);
ok(ret, "AccessCheck failed with error %ld\n", GetLastError()); ok(ret, "AccessCheck failed with error %ld\n", GetLastError());
ok(AccessStatus && (Access == KEY_READ), todo_wine ok(AccessStatus && (Access == KEY_READ),
"AccessCheck failed to grant access with error %ld\n", "AccessCheck failed to grant access with error %ld\n",
GetLastError()); GetLastError());
ret = AccessCheck(SecurityDescriptor, Token, MAXIMUM_ALLOWED, &Mapping, ret = AccessCheck(SecurityDescriptor, Token, MAXIMUM_ALLOWED, &Mapping,
PrivSet, &PrivSetLen, &Access, &AccessStatus); PrivSet, &PrivSetLen, &Access, &AccessStatus);
ok(ret, "AccessCheck failed with error %ld\n", GetLastError()); ok(ret, "AccessCheck failed with error %ld\n", GetLastError());
ok(AccessStatus, todo_wine ok(AccessStatus,
"AccessCheck failed to grant any access with error %ld\n", "AccessCheck failed to grant any access with error %ld\n",
GetLastError()); GetLastError());
trace("AccessCheck with MAXIMUM_ALLOWED got Access 0x%08lx\n", Access); trace("AccessCheck with MAXIMUM_ALLOWED got Access 0x%08lx\n", Access);
...@@ -553,7 +553,7 @@ static void test_AccessCheck(void) ...@@ -553,7 +553,7 @@ static void test_AccessCheck(void)
Access); Access);
} }
else else
trace("Couldn't get SE_SECURITY_PRIVILEGE (0x%08lx), skipping ACCESS_SYSTEM_SECURITY test\n", trace("Couldn't get SE_SECURITY_PRIVILEGE (0x%08x), skipping ACCESS_SYSTEM_SECURITY test\n",
ret); ret);
RevertToSelf(); RevertToSelf();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment