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
d0b1e43c
Commit
d0b1e43c
authored
Feb 28, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Remove commented out traces, use test calls instead of traces.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4803b7ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
32 deletions
+14
-32
win.c
dlls/user32/tests/win.c
+14
-32
No files found.
dlls/user32/tests/win.c
View file @
d0b1e43c
...
@@ -2786,7 +2786,6 @@ static void check_z_order_debug(HWND hwnd, HWND next, HWND prev, HWND owner,
...
@@ -2786,7 +2786,6 @@ static void check_z_order_debug(HWND hwnd, HWND next, HWND prev, HWND owner,
UlongToHandle
(
GetWindowLongPtrA
(
test
,
GWLP_HINSTANCE
))
!=
GetModuleHandleA
(
NULL
)
||
UlongToHandle
(
GetWindowLongPtrA
(
test
,
GWLP_HINSTANCE
))
!=
GetModuleHandleA
(
NULL
)
||
GetWindow
(
test
,
GW_OWNER
)
==
next
))
GetWindow
(
test
,
GW_OWNER
)
==
next
))
{
{
/*trace("skipping next %p (%p)\n", test, UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)));*/
test
=
GetWindow
(
test
,
GW_HWNDNEXT
);
test
=
GetWindow
(
test
,
GW_HWNDNEXT
);
}
}
ok_
(
file
,
line
)(
next
==
test
,
"%p: expected next %p, got %p
\n
"
,
hwnd
,
next
,
test
);
ok_
(
file
,
line
)(
next
==
test
,
"%p: expected next %p, got %p
\n
"
,
hwnd
,
next
,
test
);
...
@@ -2798,7 +2797,6 @@ static void check_z_order_debug(HWND hwnd, HWND next, HWND prev, HWND owner,
...
@@ -2798,7 +2797,6 @@ static void check_z_order_debug(HWND hwnd, HWND next, HWND prev, HWND owner,
UlongToHandle
(
GetWindowLongPtrA
(
test
,
GWLP_HINSTANCE
))
!=
GetModuleHandleA
(
NULL
)
||
UlongToHandle
(
GetWindowLongPtrA
(
test
,
GWLP_HINSTANCE
))
!=
GetModuleHandleA
(
NULL
)
||
GetWindow
(
test
,
GW_OWNER
)
==
hwnd
))
GetWindow
(
test
,
GW_OWNER
)
==
hwnd
))
{
{
/*trace("skipping prev %p (%p)\n", test, UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)));*/
test
=
GetWindow
(
test
,
GW_HWNDPREV
);
test
=
GetWindow
(
test
,
GW_HWNDPREV
);
}
}
ok_
(
file
,
line
)(
prev
==
test
,
"%p: expected prev %p, got %p
\n
"
,
hwnd
,
prev
,
test
);
ok_
(
file
,
line
)(
prev
==
test
,
"%p: expected prev %p, got %p
\n
"
,
hwnd
,
prev
,
test
);
...
@@ -3060,8 +3058,6 @@ static void test_SetActiveWindow(HWND hwnd)
...
@@ -3060,8 +3058,6 @@ static void test_SetActiveWindow(HWND hwnd)
SetActiveWindow
(
0
);
SetActiveWindow
(
0
);
check_wnd_state
(
0
,
0
,
0
,
0
);
check_wnd_state
(
0
,
0
,
0
,
0
);
/*trace("testing SetActiveWindow %p\n", hwnd);*/
ShowWindow
(
hwnd
,
SW_SHOW
);
ShowWindow
(
hwnd
,
SW_SHOW
);
check_wnd_state
(
hwnd
,
hwnd
,
hwnd
,
0
);
check_wnd_state
(
hwnd
,
hwnd
,
hwnd
,
0
);
...
@@ -3084,7 +3080,7 @@ static void test_SetActiveWindow(HWND hwnd)
...
@@ -3084,7 +3080,7 @@ static void test_SetActiveWindow(HWND hwnd)
ShowWindow
(
hwnd
,
SW_HIDE
);
ShowWindow
(
hwnd
,
SW_HIDE
);
check_wnd_state
(
0
,
0
,
0
,
0
);
check_wnd_state
(
0
,
0
,
0
,
0
);
/*
trace("testing SetActiveWindow on an invisible window %p\n", hwnd);
*/
/*
Invisible window.
*/
SetActiveWindow
(
hwnd
);
SetActiveWindow
(
hwnd
);
check_wnd_state
(
hwnd
,
hwnd
,
hwnd
,
0
);
check_wnd_state
(
hwnd
,
hwnd
,
hwnd
,
0
);
...
@@ -3176,8 +3172,6 @@ static void test_SetForegroundWindow(HWND hwnd)
...
@@ -3176,8 +3172,6 @@ static void test_SetForegroundWindow(HWND hwnd)
SetActiveWindow
(
0
);
SetActiveWindow
(
0
);
check_wnd_state
(
0
,
0
,
0
,
0
);
check_wnd_state
(
0
,
0
,
0
,
0
);
/*trace("testing SetForegroundWindow %p\n", hwnd);*/
ShowWindow
(
hwnd
,
SW_SHOW
);
ShowWindow
(
hwnd
,
SW_SHOW
);
check_wnd_state
(
hwnd
,
hwnd
,
hwnd
,
0
);
check_wnd_state
(
hwnd
,
hwnd
,
hwnd
,
0
);
...
@@ -3219,7 +3213,7 @@ static void test_SetForegroundWindow(HWND hwnd)
...
@@ -3219,7 +3213,7 @@ static void test_SetForegroundWindow(HWND hwnd)
ShowWindow
(
hwnd
,
SW_HIDE
);
ShowWindow
(
hwnd
,
SW_HIDE
);
check_wnd_state
(
0
,
0
,
0
,
0
);
check_wnd_state
(
0
,
0
,
0
,
0
);
/*
trace("testing SetForegroundWindow on an invisible window %p\n", hwnd);
*/
/*
Invisible window.
*/
ret
=
SetForegroundWindow
(
hwnd
);
ret
=
SetForegroundWindow
(
hwnd
);
ok
(
ret
,
"SetForegroundWindow returned FALSE instead of TRUE
\n
"
);
ok
(
ret
,
"SetForegroundWindow returned FALSE instead of TRUE
\n
"
);
check_wnd_state
(
hwnd
,
hwnd
,
hwnd
,
0
);
check_wnd_state
(
hwnd
,
hwnd
,
hwnd
,
0
);
...
@@ -5206,10 +5200,8 @@ static void test_AWRwindow(LPCSTR class, LONG style, LONG exStyle, BOOL menu)
...
@@ -5206,10 +5200,8 @@ static void test_AWRwindow(LPCSTR class, LONG style, LONG exStyle, BOOL menu)
0
,
0
,
menu
?
hmenu
:
0
,
menu
?
hmenu
:
0
,
0
,
0
);
0
,
0
);
if
(
!
hwnd
)
{
ok
(
hwnd
!=
NULL
,
"Failed to create window class=%s, style=0x%08x, exStyle=0x%08x
\n
"
,
class
,
style
,
exStyle
);
trace
(
"Failed to create window class=%s, style=0x%08x, exStyle=0x%08x
\n
"
,
class
,
style
,
exStyle
);
return
;
}
ShowWindow
(
hwnd
,
SW_SHOW
);
ShowWindow
(
hwnd
,
SW_SHOW
);
test_nonclient_area
(
hwnd
);
test_nonclient_area
(
hwnd
);
...
@@ -5354,6 +5346,7 @@ static void test_redrawnow(void)
...
@@ -5354,6 +5346,7 @@ static void test_redrawnow(void)
{
{
WNDCLASSA
cls
;
WNDCLASSA
cls
;
HWND
hwndMain
;
HWND
hwndMain
;
BOOL
ret
;
cls
.
style
=
CS_DBLCLKS
;
cls
.
style
=
CS_DBLCLKS
;
cls
.
lpfnWndProc
=
redraw_window_procA
;
cls
.
lpfnWndProc
=
redraw_window_procA
;
...
@@ -5365,11 +5358,8 @@ static void test_redrawnow(void)
...
@@ -5365,11 +5358,8 @@ static void test_redrawnow(void)
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
lpszMenuName
=
NULL
;
cls
.
lpszMenuName
=
NULL
;
cls
.
lpszClassName
=
"RedrawWindowClass"
;
cls
.
lpszClassName
=
"RedrawWindowClass"
;
ret
=
RegisterClassA
(
&
cls
);
if
(
!
RegisterClassA
(
&
cls
))
{
ok
(
ret
,
"Failed to register a test class.
\n
"
);
trace
(
"Register failed %d
\n
"
,
GetLastError
());
return
;
}
hwndMain
=
CreateWindowA
(
"RedrawWindowClass"
,
"Main Window"
,
WS_OVERLAPPEDWINDOW
,
hwndMain
=
CreateWindowA
(
"RedrawWindowClass"
,
"Main Window"
,
WS_OVERLAPPEDWINDOW
,
CW_USEDEFAULT
,
0
,
100
,
100
,
NULL
,
NULL
,
0
,
NULL
);
CW_USEDEFAULT
,
0
,
100
,
100
,
NULL
,
NULL
,
0
,
NULL
);
...
@@ -5471,6 +5461,7 @@ static void test_csparentdc(void)
...
@@ -5471,6 +5461,7 @@ static void test_csparentdc(void)
{
{
WNDCLASSA
clsMain
,
cls
;
WNDCLASSA
clsMain
,
cls
;
HWND
hwndMain
,
hwnd1
,
hwnd2
;
HWND
hwndMain
,
hwnd1
,
hwnd2
;
BOOL
ret
;
RECT
rc
;
RECT
rc
;
struct
parentdc_test
test_answer
;
struct
parentdc_test
test_answer
;
...
@@ -5536,11 +5527,8 @@ static void test_csparentdc(void)
...
@@ -5536,11 +5527,8 @@ static void test_csparentdc(void)
clsMain
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
clsMain
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
clsMain
.
lpszMenuName
=
NULL
;
clsMain
.
lpszMenuName
=
NULL
;
clsMain
.
lpszClassName
=
"ParentDcMainWindowClass"
;
clsMain
.
lpszClassName
=
"ParentDcMainWindowClass"
;
ret
=
RegisterClassA
(
&
clsMain
);
if
(
!
RegisterClassA
(
&
clsMain
))
{
ok
(
ret
,
"Failed to register a test class.
\n
"
);
trace
(
"Register failed %d
\n
"
,
GetLastError
());
return
;
}
cls
.
style
=
CS_DBLCLKS
|
CS_PARENTDC
;
cls
.
style
=
CS_DBLCLKS
|
CS_PARENTDC
;
cls
.
lpfnWndProc
=
parentdc_window_procA
;
cls
.
lpfnWndProc
=
parentdc_window_procA
;
...
@@ -5552,11 +5540,8 @@ static void test_csparentdc(void)
...
@@ -5552,11 +5540,8 @@ static void test_csparentdc(void)
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
lpszMenuName
=
NULL
;
cls
.
lpszMenuName
=
NULL
;
cls
.
lpszClassName
=
"ParentDcWindowClass"
;
cls
.
lpszClassName
=
"ParentDcWindowClass"
;
ret
=
RegisterClassA
(
&
cls
);
if
(
!
RegisterClassA
(
&
cls
))
{
ok
(
ret
,
"Failed to register a test class.
\n
"
);
trace
(
"Register failed %d
\n
"
,
GetLastError
());
return
;
}
SetRect
(
&
rc
,
0
,
0
,
150
,
150
);
SetRect
(
&
rc
,
0
,
0
,
150
,
150
);
AdjustWindowRectEx
(
&
rc
,
WS_OVERLAPPEDWINDOW
,
FALSE
,
0
);
AdjustWindowRectEx
(
&
rc
,
WS_OVERLAPPEDWINDOW
,
FALSE
,
0
);
...
@@ -7041,11 +7026,8 @@ static void test_GetUpdateRect(void)
...
@@ -7041,11 +7026,8 @@ static void test_GetUpdateRect(void)
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
lpszMenuName
=
NULL
;
cls
.
lpszMenuName
=
NULL
;
cls
.
lpszClassName
=
classNameA
;
cls
.
lpszClassName
=
classNameA
;
ret
=
RegisterClassA
(
&
cls
);
if
(
!
RegisterClassA
(
&
cls
))
{
ok
(
ret
,
"Failed to register a test class.
\n
"
);
trace
(
"Register failed %d
\n
"
,
GetLastError
());
return
;
}
hgrandparent
=
CreateWindowA
(
classNameA
,
"grandparent"
,
WS_OVERLAPPEDWINDOW
,
hgrandparent
=
CreateWindowA
(
classNameA
,
"grandparent"
,
WS_OVERLAPPEDWINDOW
,
0
,
0
,
100
,
100
,
NULL
,
NULL
,
0
,
NULL
);
0
,
0
,
100
,
100
,
NULL
,
NULL
,
0
,
NULL
);
...
...
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