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
99ebe8b4
Commit
99ebe8b4
authored
Aug 20, 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 and VarAnd tests a bit better if there is no I8 and/or UI8 support.
parent
71dc8187
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
vartest.c
dlls/oleaut32/tests/vartest.c
+10
-6
No files found.
dlls/oleaut32/tests/vartest.c
View file @
99ebe8b4
...
...
@@ -5140,6 +5140,10 @@ static void test_VarCat(void)
SKIPTESTS
(
leftvt
);
/* Check if we need/have support for I8 and/or UI8 */
if
((
leftvt
==
VT_I8
||
leftvt
==
VT_UI8
)
&&
!
HAVE_OLEAUT32_I8
)
continue
;
for
(
rightvt
=
0
;
rightvt
<=
VT_BSTR_BLOB
;
rightvt
++
)
{
...
...
@@ -5154,9 +5158,7 @@ static void test_VarCat(void)
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
)
if
((
rightvt
==
VT_I8
||
rightvt
==
VT_UI8
)
&&
!
HAVE_OLEAUT32_I8
)
continue
;
if
(
leftvt
==
VT_NULL
&&
rightvt
==
VT_NULL
)
...
...
@@ -5465,15 +5467,17 @@ static void test_VarAnd(void)
{
SKIPTESTAND
(
leftvt
);
/* Check if we need/have support for I8 and/or UI8 */
if
((
leftvt
==
VT_I8
||
leftvt
==
VT_UI8
)
&&
!
HAVE_OLEAUT32_I8
)
continue
;
for
(
rightvt
=
0
;
rightvt
<=
VT_BSTR_BLOB
;
rightvt
++
)
{
BOOL
bFail
=
FALSE
;
SKIPTESTAND
(
rightvt
);
/* 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
)
if
((
rightvt
==
VT_I8
||
rightvt
==
VT_UI8
)
&&
!
HAVE_OLEAUT32_I8
)
continue
;
memset
(
&
left
,
0
,
sizeof
(
left
));
...
...
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