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
e7800f2a
Commit
e7800f2a
authored
Feb 26, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Use win_skip() to skip over unimplemented functionality.
parent
170d647b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
comboex.c
dlls/comctl32/tests/comboex.c
+2
-2
filedlg.c
dlls/comdlg32/tests/filedlg.c
+3
-3
No files found.
dlls/comctl32/tests/comboex.c
View file @
e7800f2a
...
...
@@ -187,7 +187,7 @@ static void test_WM_LBUTTONDOWN(void)
pGetComboBoxInfo
=
(
void
*
)
GetProcAddress
(
GetModuleHandleA
(
"user32.dll"
),
"GetComboBoxInfo"
);
if
(
!
pGetComboBoxInfo
){
skip
(
"GetComboBoxInfo is not available
\n
"
);
win_
skip
(
"GetComboBoxInfo is not available
\n
"
);
return
;
}
...
...
@@ -314,7 +314,7 @@ static int init(void)
pInitCommonControlsEx
=
(
void
*
)
GetProcAddress
(
hComctl32
,
"InitCommonControlsEx"
);
if
(
!
pInitCommonControlsEx
)
{
skip
(
"InitCommonControlsEx() is missing. Skipping the tests
\n
"
);
win_
skip
(
"InitCommonControlsEx() is missing. Skipping the tests
\n
"
);
return
0
;
}
iccex
.
dwSize
=
sizeof
(
iccex
);
...
...
dlls/comdlg32/tests/filedlg.c
View file @
e7800f2a
...
...
@@ -111,7 +111,7 @@ static void test_DialogCancel(void)
SetLastError
(
0xdeadbeef
);
result
=
GetOpenFileNameW
((
LPOPENFILENAMEW
)
&
ofn
);
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
skip
(
"GetOpenFileNameW is not implemented
\n
"
);
win_
skip
(
"GetOpenFileNameW is not implemented
\n
"
);
else
{
ok
(
0
==
result
,
"expected %d, got %d
\n
"
,
0
,
result
);
...
...
@@ -124,7 +124,7 @@ static void test_DialogCancel(void)
SetLastError
(
0xdeadbeef
);
result
=
GetSaveFileNameW
((
LPOPENFILENAMEW
)
&
ofn
);
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
skip
(
"GetSaveFileNameW is not implemented
\n
"
);
win_
skip
(
"GetSaveFileNameW is not implemented
\n
"
);
else
{
ok
(
0
==
result
,
"expected %d, got %d
\n
"
,
0
,
result
);
...
...
@@ -156,7 +156,7 @@ static UINT_PTR CALLBACK create_view_window2_hook(HWND dlg, UINT msg, WPARAM wPa
hr
=
IShellView_QueryInterface
(
shell_view
,
&
IID_IShellView2
,
(
void
**
)
&
shell_view2
);
if
(
hr
==
E_NOINTERFACE
)
{
skip
(
"IShellView2 not supported
\n
"
);
win_
skip
(
"IShellView2 not supported
\n
"
);
goto
cleanup
;
}
ok
(
SUCCEEDED
(
hr
),
"QueryInterface returned %#x
\n
"
,
hr
);
...
...
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