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
7c0f0abe
Commit
7c0f0abe
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: Add a few skip's to the vartype tests.
parent
9b396275
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
vartype.c
dlls/oleaut32/tests/vartype.c
+13
-1
No files found.
dlls/oleaut32/tests/vartype.c
View file @
7c0f0abe
...
...
@@ -46,7 +46,7 @@ static HMODULE hOleaut32;
/* Get a conversion function ptr, return if function not available */
#define CHECKPTR(func) p##func = (void*)GetProcAddress(hOleaut32, #func); \
if (!p##func) { \
trace
("function " # func " not available, not testing it\n"); return; }
skip
("function " # func " not available, not testing it\n"); return; }
/* Is a given function exported from oleaut32? */
#define HAVE_FUNC(func) ((void*)GetProcAddress(hOleaut32, #func) != NULL)
...
...
@@ -2347,7 +2347,10 @@ static void test_VarI8Copy(void)
LONGLONG
in
=
1
;
if
(
!
HAVE_OLEAUT32_I8
)
{
skip
(
"I8 and UI8 data types are not available
\n
"
);
return
;
}
VariantInit
(
&
vSrc
);
VariantInit
(
&
vDst
);
...
...
@@ -2374,7 +2377,10 @@ static void test_VarI8ChangeTypeEx(void)
VARIANTARG
vSrc
,
vDst
;
if
(
!
HAVE_OLEAUT32_I8
)
{
skip
(
"I8 and UI8 data types are not available
\n
"
);
return
;
}
in
=
1
;
...
...
@@ -2603,7 +2609,10 @@ static void test_VarUI8Copy(void)
ULONGLONG
in
=
1
;
if
(
!
HAVE_OLEAUT32_I8
)
{
skip
(
"I8 and UI8 data types are not available
\n
"
);
return
;
}
VariantInit
(
&
vSrc
);
VariantInit
(
&
vDst
);
...
...
@@ -2630,7 +2639,10 @@ static void test_VarUI8ChangeTypeEx(void)
VARIANTARG
vSrc
,
vDst
;
if
(
!
HAVE_OLEAUT32_I8
)
{
skip
(
"I8 and UI8 data types are not available
\n
"
);
return
;
}
in
=
1
;
...
...
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