advapi32: ERROR_IO_PENDING is returned in Vista only on success.

This commit is contained in:
James Hawkins 2008-09-08 00:44:07 -05:00 committed by Alexandre Julliard
parent 3b3f5118ac
commit f4c8a0fadd
1 changed files with 13 additions and 6 deletions

View File

@ -97,12 +97,19 @@ static void test_CredWriteA(void)
SetLastError(0xdeadbeef);
ret = pCredWriteA(&new_cred, 0);
ok(!ret, "CredWrite with username without domain should have failed\n");
ok(GetLastError() == ERROR_BAD_USERNAME ||
GetLastError() == ERROR_NO_SUCH_LOGON_SESSION || /* Vista */
broken(GetLastError() == ERROR_IO_PENDING),
"CredWrite with username without domain should return ERROR_BAD_USERNAME"
"or ERROR_NO_SUCH_LOGON_SESSION not %d\n", GetLastError());
if (ret)
{
/* Vista */
ok(GetLastError() == ERROR_IO_PENDING,
"Expected ERROR_IO_PENDING, got %d\n", GetLastError());
}
else
{
ok(GetLastError() == ERROR_BAD_USERNAME ||
GetLastError() == ERROR_NO_SUCH_LOGON_SESSION, /* Vista */
"CredWrite with username without domain should return ERROR_BAD_USERNAME"
"or ERROR_NO_SUCH_LOGON_SESSION not %d\n", GetLastError());
}
new_cred.UserName = NULL;
SetLastError(0xdeadbeef);