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
e40e5661
Commit
e40e5661
authored
May 07, 2015
by
Sebastian Lackner
Committed by
Alexandre Julliard
May 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Add/remove todo_wine to avoid test failures.
parent
f4f8679a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
pipe.c
dlls/ntdll/tests/pipe.c
+4
-5
No files found.
dlls/ntdll/tests/pipe.c
View file @
e40e5661
...
...
@@ -469,13 +469,12 @@ static void test_cancelio(void)
ok
(
res
==
STATUS_PENDING
,
"NtFsControlFile returned %x
\n
"
,
res
);
res
=
pNtCancelIoFile
(
hPipe
,
&
cancel_sb
);
todo_wine
ok
(
!
res
,
"NtCancelIoFile returned %x
\n
"
,
res
);
ok
(
!
res
,
"NtCancelIoFile returned %x
\n
"
,
res
);
todo_wine
{
ok
(
U
(
iosb
).
Status
==
STATUS_CANCELLED
,
"Wrong iostatus %x
\n
"
,
U
(
iosb
).
Status
);
ok
(
WaitForSingleObject
(
hEvent
,
0
)
==
0
,
"hEvent not signaled
\n
"
);
}
ok
(
U
(
iosb
).
Status
==
STATUS_CANCELLED
,
"Wrong iostatus %x
\n
"
,
U
(
iosb
).
Status
);
ok
(
WaitForSingleObject
(
hEvent
,
0
)
==
0
,
"hEvent not signaled
\n
"
);
todo_wine
ok
(
!
ioapc_called
,
"IOAPC ran too early
\n
"
);
SleepEx
(
0
,
TRUE
);
/* alertable wait state */
...
...
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