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
c31280d6
Commit
c31280d6
authored
Nov 01, 2013
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Check that WaitCommEvent() returns immediately in overlapped mode.
parent
7425d2ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
comm.c
dlls/kernel32/tests/comm.c
+2
-0
No files found.
dlls/kernel32/tests/comm.c
View file @
c31280d6
...
@@ -855,6 +855,8 @@ static void test_waittxempty(void)
...
@@ -855,6 +855,8 @@ static void test_waittxempty(void)
SetLastError
(
0xdeadbeef
);
SetLastError
(
0xdeadbeef
);
res
=
WaitCommEvent
(
hcom
,
&
evtmask
,
&
ovl_wait
);
res
=
WaitCommEvent
(
hcom
,
&
evtmask
,
&
ovl_wait
);
ok
(
!
res
&&
GetLastError
()
==
ERROR_IO_PENDING
,
"WaitCommEvent error %d
\n
"
,
GetLastError
());
ok
(
!
res
&&
GetLastError
()
==
ERROR_IO_PENDING
,
"WaitCommEvent error %d
\n
"
,
GetLastError
());
after
=
GetTickCount
();
ok
(
after
-
before
<
30
,
"WaitCommEvent should have returned immediately, took %d ms
\n
"
,
after
-
before
);
res
=
WaitForSingleObject
(
ovl_wait
.
hEvent
,
1500
);
res
=
WaitForSingleObject
(
ovl_wait
.
hEvent
,
1500
);
ok
(
res
==
WAIT_OBJECT_0
,
"WaitCommEvent failed with a timeout
\n
"
);
ok
(
res
==
WAIT_OBJECT_0
,
"WaitCommEvent failed with a timeout
\n
"
);
if
(
res
==
WAIT_OBJECT_0
)
if
(
res
==
WAIT_OBJECT_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