Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f4c8a0fa
Commit
f4c8a0fa
authored
Sep 08, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Sep 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: ERROR_IO_PENDING is returned in Vista only on success.
parent
3b3f5118
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
cred.c
dlls/advapi32/tests/cred.c
+13
-6
No files found.
dlls/advapi32/tests/cred.c
View file @
f4c8a0fa
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment