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
a16f33c0
Commit
a16f33c0
authored
Nov 11, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Skip the PM_QS_* PeekMessage tests on NT4.
parent
4a573392
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
msg.c
dlls/user32/tests/msg.c
+4
-6
No files found.
dlls/user32/tests/msg.c
View file @
a16f33c0
...
...
@@ -8874,7 +8874,6 @@ static void test_PeekMessage(void)
DWORD
tid
,
qstatus
;
UINT
qs_all_input
=
QS_ALLINPUT
;
UINT
qs_input
=
QS_INPUT
;
UINT
qs_sendmessage
=
0
;
BOOL
ret
;
struct
peekmsg_info
info
;
...
...
@@ -8965,11 +8964,10 @@ static void test_PeekMessage(void)
ok
(
!
ret
,
"PeekMessageA should have returned FALSE instead of msg %04x
\n
"
,
msg
.
message
);
if
(
!
sequence_cnt
)
/* nt4
needs explicit PM_QS_SENDMESSAGE to process sent message
s */
if
(
!
sequence_cnt
)
/* nt4
doesn't fetch anything with PM_QS_* flag
s */
{
qs_sendmessage
=
QS_SENDMESSAGE
;
ret
=
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
|
((
qs_input
|
qs_sendmessage
)
<<
16
));
ok
(
!
ret
,
"PeekMessageA should have returned FALSE instead of msg %04x
\n
"
,
msg
.
message
);
win_skip
(
"PM_QS_* flags not supported in PeekMessage
\n
"
);
goto
done
;
}
ok_sequence
(
WmUser
,
"WmUser"
,
FALSE
);
...
...
@@ -8986,7 +8984,7 @@ static void test_PeekMessage(void)
"wrong qstatus %08x
\n
"
,
qstatus
);
msg
.
message
=
0
;
ret
=
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
|
PM_QS_POSTMESSAGE
|
(
qs_sendmessage
<<
16
)
);
ret
=
PeekMessageA
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
|
PM_QS_POSTMESSAGE
);
ok
(
!
ret
,
"PeekMessageA should have returned FALSE instead of msg %04x
\n
"
,
msg
.
message
);
...
...
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