Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f4fb963e
Commit
f4fb963e
authored
Sep 18, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Sep 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32/tests: Skip tests on older versions of the conversion library.
parent
7045cee3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
convert.c
dlls/oledb32/tests/convert.c
+10
-0
No files found.
dlls/oledb32/tests/convert.c
View file @
f4fb963e
...
...
@@ -213,6 +213,16 @@ static void test_canconvert(void)
return
;
}
/* Some older versions of the library don't support several conversions, we'll skip
if we have such a library */
hr
=
IDataConvert_CanConvert
(
convert
,
DBTYPE_EMPTY
,
DBTYPE_DBTIMESTAMP
);
if
(
hr
==
S_FALSE
)
{
win_skip
(
"Doesn't handle DBTYPE_EMPTY -> DBTYPE_DBTIMESTAMP conversion so skipping
\n
"
);
IDataConvert_Release
(
convert
);
return
;
}
for
(
src_idx
=
0
;
src_idx
<
sizeof
(
simple_convert
)
/
sizeof
(
simple_convert
[
0
]);
src_idx
++
)
for
(
dst_idx
=
0
;
dst_idx
<
sizeof
(
simple_convert
)
/
sizeof
(
simple_convert
[
0
]);
dst_idx
++
)
{
...
...
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