ChangeSet ID: 18501 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2005/06/28 08:52:01 Modified files: dlls/advapi32/tests: security.c Log message: Mark as todo a couple of tests that currently fail. Patch: http://cvs.winehq.org/patch.py?id=18501 Old revision New revision Changes Path 1.20 1.21 +3 -3 wine/dlls/advapi32/tests/security.c Index: wine/dlls/advapi32/tests/security.c diff -u -p wine/dlls/advapi32/tests/security.c:1.20 wine/dlls/advapi32/tests/security.c:1.21 --- wine/dlls/advapi32/tests/security.c:1.20 Mon May 20 06:29:59 2013 +++ wine/dlls/advapi32/tests/security.c Mon May 20 06:29:59 2013 @@ -518,14 +518,14 @@ static void test_AccessCheck(void) ret = AccessCheck(SecurityDescriptor, Token, KEY_READ, &Mapping, PrivSet, &PrivSetLen, &Access, &AccessStatus); 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", GetLastError()); ret = AccessCheck(SecurityDescriptor, Token, MAXIMUM_ALLOWED, &Mapping, PrivSet, &PrivSetLen, &Access, &AccessStatus); 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", GetLastError()); trace("AccessCheck with MAXIMUM_ALLOWED got Access 0x%08lx\n", Access); @@ -553,7 +553,7 @@ static void test_AccessCheck(void) Access); } 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); RevertToSelf();