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
b6a505f9
Commit
b6a505f9
authored
Aug 09, 2016
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 10, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32/tests: Use todo_wine_if().
Signed-off-by:
Michael Stefaniuc
<
mstefani@redhat.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3bc7549f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
propvariant.c
dlls/ole32/tests/propvariant.c
+1
-10
No files found.
dlls/ole32/tests/propvariant.c
View file @
b6a505f9
...
...
@@ -166,16 +166,7 @@ static void expect(HRESULT hr, VARTYPE vt, BOOL copy, int line)
}
else
if
(
flags
==
PROP_V0
)
ok
(
hr
==
S_OK
,
"%s (%s): got %08x
\n
"
,
wine_vtypes
[
idx
],
modifier
,
hr
);
else
if
(
flags
&
PROP_TODO
)
{
todo_wine
{
if
(
hr
!=
S_OK
)
win_skip
(
"%s (%s): unsupported
\n
"
,
wine_vtypes
[
idx
],
modifier
);
else
ok
(
hr
==
S_OK
,
"%s (%s): got %08x
\n
"
,
wine_vtypes
[
idx
],
modifier
,
hr
);
}
}
else
else
todo_wine_if
(
flags
&
PROP_TODO
)
{
if
(
hr
!=
S_OK
)
win_skip
(
"%s (%s): unsupported
\n
"
,
wine_vtypes
[
idx
],
modifier
);
...
...
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