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
c36acfce
Commit
c36acfce
authored
Aug 17, 2007
by
Paul Vriens
Committed by
Alexandre Julliard
Aug 20, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Skip VarCat tests if there is no I8 and/or UI8 support.
parent
9226cee6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
vartest.c
dlls/oleaut32/tests/vartest.c
+9
-0
No files found.
dlls/oleaut32/tests/vartest.c
View file @
c36acfce
...
...
@@ -102,6 +102,9 @@ static void init(void)
#define HAVE_FUNC(func) ((void*)GetProcAddress(hOleaut32, #func) != NULL)
HAVE_OLEAUT32_I8
=
HAVE_FUNC
(
VarI8FromI1
);
if
(
!
HAVE_OLEAUT32_I8
)
skip
(
"No support for I8 and UI8 data types
\n
"
);
HAVE_OLEAUT32_RECORD
=
HAVE_FUNC
(
SafeArraySetRecordInfo
);
IS_ANCIENT
=
(
!
HAVE_FUNC
(
VarI1FromI2
));
...
...
@@ -5150,6 +5153,12 @@ static void test_VarCat(void)
leftvt
==
15
||
rightvt
==
15
/* Undefined type */
)
continue
;
/* Check if we need/have support for I8 and/or UI8 */
if
((
leftvt
==
VT_I8
||
leftvt
==
VT_UI8
||
rightvt
==
VT_I8
||
rightvt
==
VT_UI8
)
&&
!
HAVE_OLEAUT32_I8
)
continue
;
if
(
leftvt
==
VT_NULL
&&
rightvt
==
VT_NULL
)
resultvt
=
VT_NULL
;
else
if
(
leftvt
==
VT_VARIANT
&&
(
rightvt
==
VT_ERROR
||
...
...
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