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
8619ccf2
Commit
8619ccf2
authored
Oct 29, 2008
by
Nicolas Le Cam
Committed by
Alexandre Julliard
Oct 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Fix a test on several platforms.
parent
ca71e5af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
shellpath.c
dlls/shell32/tests/shellpath.c
+3
-1
No files found.
dlls/shell32/tests/shellpath.c
View file @
8619ccf2
...
...
@@ -338,7 +338,9 @@ static void testSHGetFolderPathInvalidArgs(void)
/* expect 2's a bogus handle, especially since we didn't open it */
hr
=
pSHGetFolderPathA
(
NULL
,
CSIDL_DESKTOP
,
(
HANDLE
)
2
,
SHGFP_TYPE_DEFAULT
,
path
);
ok
(
hr
==
E_FAIL
,
ok
(
hr
==
E_FAIL
||
hr
==
E_HANDLE
||
/* Windows Vista and 2008 */
broken
(
hr
==
S_OK
),
/* Windows 2000 and Me */
"SHGetFolderPathA(NULL, CSIDL_DESKTOP, 2, SHGFP_TYPE_DEFAULT, path) returned 0x%08x, expected E_FAIL
\n
"
,
hr
);
hr
=
pSHGetFolderPathA
(
NULL
,
0xeeee
,
NULL
,
SHGFP_TYPE_DEFAULT
,
path
);
ok
(
hr
==
E_INVALIDARG
,
...
...
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