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
d31e8a31
Commit
d31e8a31
authored
Apr 21, 2015
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Add PeekMessage(PM_NOREMOVE) call to inter-thread messages test.
parent
a8150b53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
msg.c
dlls/user32/tests/msg.c
+10
-2
No files found.
dlls/user32/tests/msg.c
View file @
d31e8a31
...
@@ -14609,6 +14609,9 @@ static const struct message send_message_2[] = {
...
@@ -14609,6 +14609,9 @@ static const struct message send_message_2[] = {
};
};
static
const
struct
message
send_message_3
[]
=
{
static
const
struct
message
send_message_3
[]
=
{
{
WM_USER
+
3
,
sent
|
wparam
|
lparam
,
0
,
0
},
{
WM_USER
+
3
,
sent
|
wparam
|
lparam
,
0
,
0
},
{
0
}
};
static
const
struct
message
send_message_4
[]
=
{
{
WM_USER
+
1
,
sent
|
wparam
|
lparam
,
0
,
0
},
{
WM_USER
+
1
,
sent
|
wparam
|
lparam
,
0
,
0
},
{
0
}
{
0
}
};
};
...
@@ -14716,10 +14719,15 @@ todo_wine
...
@@ -14716,10 +14719,15 @@ todo_wine
ok
(
ret
==
MAKELONG
(
QS_SENDMESSAGE
,
QS_SENDMESSAGE
|
QS_POSTMESSAGE
),
"wrong status %08x
\n
"
,
ret
);
ok
(
ret
==
MAKELONG
(
QS_SENDMESSAGE
,
QS_SENDMESSAGE
|
QS_POSTMESSAGE
),
"wrong status %08x
\n
"
,
ret
);
trace
(
"main: call PeekMessage
\n
"
);
trace
(
"main: call PeekMessage
\n
"
);
ok
(
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_NOREMOVE
),
"PeekMessage should not fail
\n
"
);
ok
(
msg
.
message
==
WM_USER
+
1
,
"expected WM_USER+1, got %04x
\n
"
,
msg
.
message
);
ok_sequence
(
send_message_3
,
"SendMessage from other thread 3"
,
thread_n
==
2
);
trace
(
"main: call PeekMessage
\n
"
);
ok
(
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
),
"PeekMessage should not fail
\n
"
);
ok
(
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
),
"PeekMessage should not fail
\n
"
);
ok
(
msg
.
message
==
WM_USER
+
1
,
"expected WM_USER+1, got %04x
\n
"
,
msg
.
message
);
ok
(
msg
.
message
==
WM_USER
+
1
,
"expected WM_USER+1, got %04x
\n
"
,
msg
.
message
);
DispatchMessageA
(
&
msg
);
DispatchMessageA
(
&
msg
);
ok_sequence
(
send_message_
3
,
"SendMessage from other thread 3"
,
thread_n
==
2
);
ok_sequence
(
send_message_
4
,
"SendMessage from other thread 4"
,
FALSE
);
/* intentionally yield */
/* intentionally yield */
MsgWaitForMultipleObjects
(
0
,
NULL
,
FALSE
,
100
,
qs_all_input
);
MsgWaitForMultipleObjects
(
0
,
NULL
,
FALSE
,
100
,
qs_all_input
);
...
@@ -14733,7 +14741,7 @@ else
...
@@ -14733,7 +14741,7 @@ else
trace
(
"main: call PeekMessage
\n
"
);
trace
(
"main: call PeekMessage
\n
"
);
ok
(
!
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
),
"PeekMessage should fail
\n
"
);
ok
(
!
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
),
"PeekMessage should fail
\n
"
);
ok_sequence
(
WmEmptySeq
,
"SendMessage from other thread
4
"
,
thread_n
==
2
);
ok_sequence
(
WmEmptySeq
,
"SendMessage from other thread
5
"
,
thread_n
==
2
);
ret
=
GetQueueStatus
(
QS_SENDMESSAGE
|
QS_POSTMESSAGE
);
ret
=
GetQueueStatus
(
QS_SENDMESSAGE
|
QS_POSTMESSAGE
);
ok
(
ret
==
0
,
"wrong status %08x
\n
"
,
ret
);
ok
(
ret
==
0
,
"wrong status %08x
\n
"
,
ret
);
...
...
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