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
fbcec1ca
Commit
fbcec1ca
authored
Apr 09, 2009
by
Nicolas Le Cam
Committed by
Alexandre Julliard
Apr 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Skip FolderShortcut test on Win2k.
Skip this test as it doesn't work on Win2k. CoCreateInstance is successful but IPersistPropertyBag_Load call fails.
parent
1d3edf63
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
shlfolder.c
dlls/shell32/tests/shlfolder.c
+8
-2
No files found.
dlls/shell32/tests/shlfolder.c
View file @
fbcec1ca
...
@@ -1196,7 +1196,13 @@ static void test_FolderShortcut(void) {
...
@@ -1196,7 +1196,13 @@ static void test_FolderShortcut(void) {
win_skip
(
"SHGetSpecialFolderPathW and/or StrRetToBufW are not available
\n
"
);
win_skip
(
"SHGetSpecialFolderPathW and/or StrRetToBufW are not available
\n
"
);
return
;
return
;
}
}
if
(
!
pSHGetFolderPathAndSubDirA
)
{
win_skip
(
"FolderShortcut test doesn't work on Win2k
\n
"
);
return
;
}
/* These tests basically show, that CLSID_FolderShortcuts are initialized
/* These tests basically show, that CLSID_FolderShortcuts are initialized
* via their IPersistPropertyBag interface. And that the target folder
* via their IPersistPropertyBag interface. And that the target folder
* is taken from the IPropertyBag's 'Target' property.
* is taken from the IPropertyBag's 'Target' property.
...
@@ -1216,7 +1222,7 @@ static void test_FolderShortcut(void) {
...
@@ -1216,7 +1222,7 @@ static void test_FolderShortcut(void) {
IPersistPropertyBag_Release
(
pPersistPropertyBag
);
IPersistPropertyBag_Release
(
pPersistPropertyBag
);
return
;
return
;
}
}
hr
=
IPersistPropertyBag_QueryInterface
(
pPersistPropertyBag
,
&
IID_IShellFolder
,
hr
=
IPersistPropertyBag_QueryInterface
(
pPersistPropertyBag
,
&
IID_IShellFolder
,
(
LPVOID
*
)
&
pShellFolder
);
(
LPVOID
*
)
&
pShellFolder
);
IPersistPropertyBag_Release
(
pPersistPropertyBag
);
IPersistPropertyBag_Release
(
pPersistPropertyBag
);
...
...
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