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
e98844e5
Commit
e98844e5
authored
Jan 24, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Jan 27, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/tests: Avoid preprocessor check to ensure it compiles.
parent
9d1fdf11
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
istream.c
dlls/shlwapi/tests/istream.c
+3
-2
No files found.
dlls/shlwapi/tests/istream.c
View file @
e98844e5
...
...
@@ -283,10 +283,11 @@ static void test_SHCreateStreamOnFileA(DWORD mode, DWORD stgm)
"or HRESULT_FROM_WIN32(ERROR_BAD_PATHNAME), got 0x%08x
\n
"
,
ret
);
ok
(
stream
==
NULL
,
"SHCreateStreamOnFileA: expected a NULL IStream object, got %p
\n
"
,
stream
);
#if 0 /* This test crashes on WinXP SP2 */
if
(
0
)
/* This test crashes on WinXP SP2 */
{
ret
=
(
*
pSHCreateStreamOnFileA
)(
test_file
,
mode
|
stgm
,
NULL
);
ok
(
ret
==
E_INVALIDARG
,
"SHCreateStreamOnFileA: expected E_INVALIDARG, got 0x%08x
\n
"
,
ret
);
#endif
}
stream
=
NULL
;
ret
=
(
*
pSHCreateStreamOnFileA
)(
test_file
,
mode
|
STGM_CONVERT
|
stgm
,
&
stream
);
...
...
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