mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 22:50:43 +00:00
kernel32/tests: Avoid test failures when running as an unprivileged user.
This commit is contained in:
parent
28e80addf8
commit
af7062a94f
@ -3504,7 +3504,8 @@ static void test_SetFileValidData(void)
|
||||
|
||||
if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES, &token) ||
|
||||
!LookupPrivilegeValue(NULL, SE_MANAGE_VOLUME_NAME, &privs.Privileges[0].Luid) ||
|
||||
!AdjustTokenPrivileges(token, FALSE, &privs, sizeof(privs), NULL, NULL))
|
||||
!AdjustTokenPrivileges(token, FALSE, &privs, sizeof(privs), NULL, NULL) ||
|
||||
GetLastError() == ERROR_NOT_ALL_ASSIGNED)
|
||||
{
|
||||
win_skip("cannot enable SE_MANAGE_VOLUME_NAME privilege\n");
|
||||
CloseHandle(token);
|
||||
|
Loading…
Reference in New Issue
Block a user