Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4100bac5
Commit
4100bac5
authored
Sep 19, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl/tests: Fix error check that fails on Windows.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6435f844
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
ntoskrnl.c
dlls/ntoskrnl.exe/tests/ntoskrnl.c
+3
-2
No files found.
dlls/ntoskrnl.exe/tests/ntoskrnl.c
View file @
4100bac5
...
...
@@ -230,8 +230,9 @@ static void test_driver3(void)
ret
=
StartServiceA
(
service
,
0
,
NULL
);
ok
(
!
ret
,
"driver3 should fail to start
\n
"
);
todo_wine
ok
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
||
GetLastError
()
==
ERROR_PROC_NOT_FOUND
/* XP */
||
ok
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
||
GetLastError
()
==
ERROR_INVALID_FUNCTION
||
GetLastError
()
==
ERROR_PROC_NOT_FOUND
/* XP */
||
GetLastError
()
==
ERROR_FILE_NOT_FOUND
/* Win7 */
,
"got %u
\n
"
,
GetLastError
());
DeleteService
(
service
);
...
...
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