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
35c2ebd6
Commit
35c2ebd6
authored
Feb 10, 2011
by
Austin English
Committed by
Alexandre Julliard
Feb 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Make sure return values are used (LLVM/Clang).
parent
3209f23c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
vartest.c
dlls/oleaut32/tests/vartest.c
+2
-0
No files found.
dlls/oleaut32/tests/vartest.c
View file @
35c2ebd6
...
...
@@ -861,6 +861,7 @@ static void test_VariantCopyInd(void)
VariantInit
(
&
vDst
);
hres
=
VariantCopyInd
(
&
vDst
,
&
vSrc
);
ok
(
hres
==
S_OK
,
"VariantCopyInd failed: 0x%08x
\n
"
,
hres
);
ok
(
V_VT
(
&
vDst
)
==
VT_UI1
&&
V_UI1
(
&
vDst
)
==
0x77
,
"CopyInd(deref): expected dst vt = VT_UI1, val 0x77, got %d|0x%X, 0x%2X
\n
"
,
V_VT
(
&
vDst
)
&
VT_TYPEMASK
,
V_VT
(
&
vDst
)
&
~
VT_TYPEMASK
,
V_UI1
(
&
vDst
));
...
...
@@ -873,6 +874,7 @@ static void test_VariantCopyInd(void)
VariantInit
(
&
vDst
);
hres
=
VariantCopyInd
(
&
vDst
,
&
vSrc
);
ok
(
hres
==
S_OK
,
"VariantCopyInd failed: 0x%08x
\n
"
,
hres
);
ok
(
V_VT
(
&
vDst
)
==
VT_UI1
&&
V_UI1
(
&
vDst
)
==
0x88
,
"CopyInd(deref): expected dst vt = VT_UI1, val 0x77, got %d|0x%X, 0x%2X
\n
"
,
V_VT
(
&
vDst
)
&
VT_TYPEMASK
,
V_VT
(
&
vDst
)
&
~
VT_TYPEMASK
,
V_UI1
(
&
vDst
));
...
...
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