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
c05e6d8f
Commit
c05e6d8f
authored
Jun 18, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/listview: Fix test crashes on comctl32 <5.80.
parent
e3b94200
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
22 deletions
+61
-22
listview.c
dlls/comctl32/tests/listview.c
+61
-22
No files found.
dlls/comctl32/tests/listview.c
View file @
c05e6d8f
...
@@ -48,6 +48,8 @@ BOOL blockEdit;
...
@@ -48,6 +48,8 @@ BOOL blockEdit;
/* format reported to control:
/* format reported to control:
-1 falls to defproc, anything else returned */
-1 falls to defproc, anything else returned */
INT
notifyFormat
;
INT
notifyFormat
;
/* indicates we're running < 5.80 version */
BOOL
g_is_below_5
;
static
HWND
subclass_editbox
(
HWND
hwndListview
);
static
HWND
subclass_editbox
(
HWND
hwndListview
);
...
@@ -2244,21 +2246,28 @@ static void test_ownerdata(void)
...
@@ -2244,21 +2246,28 @@ static void test_ownerdata(void)
LVITEMA
item
;
LVITEMA
item
;
/* it isn't possible to set LVS_OWNERDATA after creation */
/* it isn't possible to set LVS_OWNERDATA after creation */
hwnd
=
create_listview_control
(
0
);
if
(
g_is_below_5
)
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
{
style
=
GetWindowLongPtrA
(
hwnd
,
GWL_STYLE
);
win_skip
(
"set LVS_OWNERDATA after creation leads to crash on < 5.80
\n
"
);
ok
(
!
(
style
&
LVS_OWNERDATA
)
&&
style
,
"LVS_OWNERDATA isn't expected
\n
"
);
}
else
{
hwnd
=
create_listview_control
(
0
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
style
=
GetWindowLongPtrA
(
hwnd
,
GWL_STYLE
);
ok
(
!
(
style
&
LVS_OWNERDATA
)
&&
style
,
"LVS_OWNERDATA isn't expected
\n
"
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
ret
=
SetWindowLongPtrA
(
hwnd
,
GWL_STYLE
,
style
|
LVS_OWNERDATA
);
ret
=
SetWindowLongPtrA
(
hwnd
,
GWL_STYLE
,
style
|
LVS_OWNERDATA
);
ok
(
ret
==
style
,
"Expected set GWL_STYLE to succeed
\n
"
);
ok
(
ret
==
style
,
"Expected set GWL_STYLE to succeed
\n
"
);
ok_sequence
(
sequences
,
LISTVIEW_SEQ_INDEX
,
listview_ownerdata_switchto_seq
,
ok_sequence
(
sequences
,
LISTVIEW_SEQ_INDEX
,
listview_ownerdata_switchto_seq
,
"try to switch to LVS_OWNERDATA seq"
,
FALSE
);
"try to switch to LVS_OWNERDATA seq"
,
FALSE
);
style
=
GetWindowLongPtrA
(
hwnd
,
GWL_STYLE
);
style
=
GetWindowLongPtrA
(
hwnd
,
GWL_STYLE
);
ok
(
!
(
style
&
LVS_OWNERDATA
),
"LVS_OWNERDATA isn't expected
\n
"
);
ok
(
!
(
style
&
LVS_OWNERDATA
),
"LVS_OWNERDATA isn't expected
\n
"
);
DestroyWindow
(
hwnd
);
DestroyWindow
(
hwnd
);
}
/* try to set LVS_OWNERDATA after creation just having it */
/* try to set LVS_OWNERDATA after creation just having it */
hwnd
=
create_listview_control
(
LVS_OWNERDATA
);
hwnd
=
create_listview_control
(
LVS_OWNERDATA
);
...
@@ -2275,20 +2284,27 @@ static void test_ownerdata(void)
...
@@ -2275,20 +2284,27 @@ static void test_ownerdata(void)
DestroyWindow
(
hwnd
);
DestroyWindow
(
hwnd
);
/* try to remove LVS_OWNERDATA after creation just having it */
/* try to remove LVS_OWNERDATA after creation just having it */
hwnd
=
create_listview_control
(
LVS_OWNERDATA
);
if
(
g_is_below_5
)
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
{
style
=
GetWindowLongPtrA
(
hwnd
,
GWL_STYLE
);
win_skip
(
"remove LVS_OWNERDATA after creation leads to crash on < 5.80
\n
"
);
ok
(
style
&
LVS_OWNERDATA
,
"LVS_OWNERDATA is expected
\n
"
);
}
else
{
hwnd
=
create_listview_control
(
LVS_OWNERDATA
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
style
=
GetWindowLongPtrA
(
hwnd
,
GWL_STYLE
);
ok
(
style
&
LVS_OWNERDATA
,
"LVS_OWNERDATA is expected
\n
"
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
ret
=
SetWindowLongPtrA
(
hwnd
,
GWL_STYLE
,
style
&
~
LVS_OWNERDATA
);
ret
=
SetWindowLongPtrA
(
hwnd
,
GWL_STYLE
,
style
&
~
LVS_OWNERDATA
);
ok
(
ret
==
style
,
"Expected set GWL_STYLE to succeed
\n
"
);
ok
(
ret
==
style
,
"Expected set GWL_STYLE to succeed
\n
"
);
ok_sequence
(
sequences
,
LISTVIEW_SEQ_INDEX
,
listview_ownerdata_switchto_seq
,
ok_sequence
(
sequences
,
LISTVIEW_SEQ_INDEX
,
listview_ownerdata_switchto_seq
,
"try to switch to LVS_OWNERDATA seq"
,
FALSE
);
"try to switch to LVS_OWNERDATA seq"
,
FALSE
);
style
=
GetWindowLongPtrA
(
hwnd
,
GWL_STYLE
);
style
=
GetWindowLongPtrA
(
hwnd
,
GWL_STYLE
);
ok
(
style
&
LVS_OWNERDATA
,
"LVS_OWNERDATA is expected
\n
"
);
ok
(
style
&
LVS_OWNERDATA
,
"LVS_OWNERDATA is expected
\n
"
);
DestroyWindow
(
hwnd
);
DestroyWindow
(
hwnd
);
}
/* try select an item */
/* try select an item */
hwnd
=
create_listview_control
(
LVS_OWNERDATA
);
hwnd
=
create_listview_control
(
LVS_OWNERDATA
);
...
@@ -3337,6 +3353,27 @@ static void test_indentation(void)
...
@@ -3337,6 +3353,27 @@ static void test_indentation(void)
DestroyWindow
(
hwnd
);
DestroyWindow
(
hwnd
);
}
}
INT
CALLBACK
DummyCompareEx
(
LPARAM
first
,
LPARAM
second
,
LPARAM
param
)
{
return
0
;
}
static
BOOL
is_below_comctl_5
(
void
)
{
HWND
hwnd
;
BOOL
ret
;
hwnd
=
create_listview_control
(
0
);
ok
(
hwnd
!=
NULL
,
"failed to create a listview window
\n
"
);
insert_item
(
hwnd
,
0
);
ret
=
SendMessage
(
hwnd
,
LVM_SORTITEMSEX
,
0
,
(
LPARAM
)
&
DummyCompareEx
);
DestroyWindow
(
hwnd
);
return
!
ret
;
}
START_TEST
(
listview
)
START_TEST
(
listview
)
{
{
HMODULE
hComctl32
;
HMODULE
hComctl32
;
...
@@ -3361,6 +3398,8 @@ START_TEST(listview)
...
@@ -3361,6 +3398,8 @@ START_TEST(listview)
ok_sequence
(
sequences
,
PARENT_SEQ_INDEX
,
create_parent_wnd_seq
,
"create parent window"
,
TRUE
);
ok_sequence
(
sequences
,
PARENT_SEQ_INDEX
,
create_parent_wnd_seq
,
"create parent window"
,
TRUE
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
g_is_below_5
=
is_below_comctl_5
();
test_images
();
test_images
();
test_checkboxes
();
test_checkboxes
();
test_items
();
test_items
();
...
...
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