mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
advapi32/tests: Add check to see if LookupAccountNameA is implemented.
This commit is contained in:
parent
e54247b10c
commit
bb00c95c45
@ -1299,6 +1299,11 @@ static void test_LookupAccountName(void)
|
||||
sid_use = 0xcafebabe;
|
||||
SetLastError(0xdeadbeef);
|
||||
ret = LookupAccountNameA(NULL, user_name, NULL, &sid_size, NULL, &domain_size, &sid_use);
|
||||
if(!ret && (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED))
|
||||
{
|
||||
skip("LookupAccountNameA is not implemented\n");
|
||||
return;
|
||||
}
|
||||
ok(!ret, "Expected 0, got %d\n", ret);
|
||||
ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
|
||||
"Expected ERROR_INSUFFICIENT_BUFFER, got %d\n", GetLastError());
|
||||
|
Loading…
Reference in New Issue
Block a user