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
de92a458
Commit
de92a458
authored
Nov 13, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Nov 13, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Allow win8 error code.
parent
f96fde38
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
sysparams.c
dlls/user32/tests/sysparams.c
+2
-1
No files found.
dlls/user32/tests/sysparams.c
View file @
de92a458
...
...
@@ -2868,8 +2868,9 @@ static void test_EnumDisplaySettings(void)
if
(
!
EnumDisplaySettingsA
(
NULL
,
num
,
&
devmode
))
{
DWORD
le
=
GetLastError
();
ok
(
le
==
ERROR_NO_MORE_FILES
||
le
==
ERROR_MOD_NOT_FOUND
/* Win8 */
||
le
==
0xdeadbeef
,
/* XP, 2003 */
"Expected ERROR_NO_MORE_FILES or 0xdeadbeef, got %d for %d
\n
"
,
le
,
num
);
"Expected ERROR_NO_MORE_FILES
, ERROR_MOD_NOT_FOUND
or 0xdeadbeef, got %d for %d
\n
"
,
le
,
num
);
break
;
}
num
++
;
...
...
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