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
80b8a0b5
Commit
80b8a0b5
authored
Feb 25, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Use win_skip() to skip over unimplemented functionality.
parent
d5b324e3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
appbar.c
dlls/shell32/tests/appbar.c
+1
-1
shelllink.c
dlls/shell32/tests/shelllink.c
+3
-3
shellpath.c
dlls/shell32/tests/shellpath.c
+1
-1
No files found.
dlls/shell32/tests/appbar.c
View file @
80b8a0b5
...
...
@@ -372,7 +372,7 @@ static void test_appbarget(void)
if
(
!
pMonitorFromWindow
)
{
skip
(
"MonitorFromWindow is not available
\n
"
);
win_
skip
(
"MonitorFromWindow is not available
\n
"
);
}
else
{
...
...
dlls/shell32/tests/shelllink.c
View file @
80b8a0b5
...
...
@@ -512,7 +512,7 @@ static void test_load_save(void)
if
(
!
pGetLongPathNameA
)
{
skip
(
"GetLongPathNameA is not available
\n
"
);
win_
skip
(
"GetLongPathNameA is not available
\n
"
);
return
;
}
...
...
@@ -655,7 +655,7 @@ static void test_datalink(void)
"CoCreateInstance failed (0x%08x)
\n
"
,
r
);
if
(
!
sl
)
{
skip
(
"no shelllink
\n
"
);
win_
skip
(
"no shelllink
\n
"
);
return
;
}
...
...
@@ -666,7 +666,7 @@ static void test_datalink(void)
if
(
!
dl
)
{
skip
(
"no datalink interface
\n
"
);
win_
skip
(
"no datalink interface
\n
"
);
IShellLinkW_Release
(
sl
);
return
;
}
...
...
dlls/shell32/tests/shellpath.c
View file @
80b8a0b5
...
...
@@ -864,7 +864,7 @@ START_TEST(shellpath)
{
/* Report missing functions once */
if
(
!
pSHGetFolderLocation
)
skip
(
"SHGetFolderLocation is not available
\n
"
);
win_
skip
(
"SHGetFolderLocation is not available
\n
"
);
/* first test various combinations of parameters: */
testApiParameters
();
...
...
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