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
7389e84d
Commit
7389e84d
authored
Apr 07, 2016
by
Sebastian Lackner
Committed by
Alexandre Julliard
Apr 07, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Fix some test failures on Win 8+.
Signed-off-by:
Sebastian Lackner
<
sebastian@fds-team.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
52cf9236
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
pipe.c
dlls/ntdll/tests/pipe.c
+4
-2
No files found.
dlls/ntdll/tests/pipe.c
View file @
7389e84d
...
...
@@ -541,7 +541,8 @@ static void test_filepipeinfo(void)
check_pipe_handle_state
(
hServer
,
0
,
1
);
hClient
=
CreateFileW
(
testpipe
,
GENERIC_READ
|
GENERIC_WRITE
,
0
,
0
,
OPEN_EXISTING
,
0
,
0
);
ok
(
hClient
!=
INVALID_HANDLE_VALUE
,
"can't open pipe, GetLastError: %x
\n
"
,
GetLastError
());
ok
(
hClient
!=
INVALID_HANDLE_VALUE
||
broken
(
GetLastError
()
==
ERROR_PIPE_BUSY
)
/* > Win 8 */
,
"can't open pipe, GetLastError: %x
\n
"
,
GetLastError
());
check_pipe_handle_state
(
hServer
,
0
,
1
);
check_pipe_handle_state
(
hClient
,
0
,
0
);
...
...
@@ -617,7 +618,8 @@ static void test_filepipeinfo(void)
check_pipe_handle_state
(
hServer
,
1
,
0
);
hClient
=
CreateFileW
(
testpipe
,
GENERIC_READ
|
GENERIC_WRITE
,
0
,
0
,
OPEN_EXISTING
,
0
,
0
);
ok
(
hClient
!=
INVALID_HANDLE_VALUE
,
"can't open pipe, GetLastError: %x
\n
"
,
GetLastError
());
ok
(
hClient
!=
INVALID_HANDLE_VALUE
||
broken
(
GetLastError
()
==
ERROR_PIPE_BUSY
)
/* > Win 8 */
,
"can't open pipe, GetLastError: %x
\n
"
,
GetLastError
());
check_pipe_handle_state
(
hServer
,
1
,
0
);
check_pipe_handle_state
(
hClient
,
0
,
0
);
...
...
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