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
5c9ce61e
Commit
5c9ce61e
authored
Jan 12, 2011
by
Greg Geldorp
Committed by
Alexandre Julliard
Jan 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Skip tests if not running in the foreground.
parent
c1736fed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
device.c
dlls/d3d9/tests/device.c
+18
-6
No files found.
dlls/d3d9/tests/device.c
View file @
5c9ce61e
...
...
@@ -2385,6 +2385,7 @@ struct wndproc_thread_param
HWND
dummy_window
;
HANDLE
window_created
;
HANDLE
test_finished
;
BOOL
running_in_foreground
;
};
static
LRESULT
CALLBACK
test_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wparam
,
LPARAM
lparam
)
...
...
@@ -2428,6 +2429,7 @@ static DWORD WINAPI wndproc_thread(void *param)
p
->
dummy_window
=
CreateWindowA
(
"d3d9_test_wndproc_wc"
,
"d3d9_test"
,
WS_MAXIMIZE
|
WS_VISIBLE
|
WS_CAPTION
,
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
p
->
running_in_foreground
=
SetForegroundWindow
(
p
->
dummy_window
);
ret
=
SetEvent
(
p
->
window_created
);
ok
(
ret
,
"SetEvent failed, last error %#x.
\n
"
,
GetLastError
());
...
...
@@ -2508,9 +2510,14 @@ static void test_wndproc(void)
tmp
=
GetFocus
();
ok
(
tmp
==
device_window
,
"Expected focus %p, got %p.
\n
"
,
device_window
,
tmp
);
tmp
=
GetForegroundWindow
();
ok
(
tmp
==
thread_params
.
dummy_window
,
"Expected foreground window %p, got %p.
\n
"
,
thread_params
.
dummy_window
,
tmp
);
if
(
thread_params
.
running_in_foreground
)
{
tmp
=
GetForegroundWindow
();
ok
(
tmp
==
thread_params
.
dummy_window
,
"Expected foreground window %p, got %p.
\n
"
,
thread_params
.
dummy_window
,
tmp
);
}
else
skip
(
"Not running in foreground, skip foreground window test
\n
"
);
flush_events
();
...
...
@@ -2647,9 +2654,14 @@ static void test_wndproc_windowed(void)
tmp
=
GetFocus
();
ok
(
tmp
==
device_window
,
"Expected focus %p, got %p.
\n
"
,
device_window
,
tmp
);
tmp
=
GetForegroundWindow
();
ok
(
tmp
==
thread_params
.
dummy_window
,
"Expected foreground window %p, got %p.
\n
"
,
thread_params
.
dummy_window
,
tmp
);
if
(
thread_params
.
running_in_foreground
)
{
tmp
=
GetForegroundWindow
();
ok
(
tmp
==
thread_params
.
dummy_window
,
"Expected foreground window %p, got %p.
\n
"
,
thread_params
.
dummy_window
,
tmp
);
}
else
skip
(
"Not running in foreground, skip foreground window test
\n
"
);
filter_messages
=
focus_window
;
...
...
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