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
e1ae573d
Commit
e1ae573d
authored
Aug 03, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Aug 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Skip tests if typelib can't be registered.
parent
117efddd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
tmarshal.c
dlls/oleaut32/tests/tmarshal.c
+9
-7
No files found.
dlls/oleaut32/tests/tmarshal.c
View file @
e1ae573d
...
...
@@ -995,13 +995,10 @@ static void test_typelibmarshal(void)
ok_ole_success
(
hr
,
CoUnmarshalInterface
);
IStream_Release
(
pStream
);
if
(
hr
==
S_OK
)
{
hr
=
IKindaEnumWidget_Next
(
pKEW
,
&
pWidget
);
ok_ole_success
(
hr
,
IKindaEnumWidget_Next
);
hr
=
IKindaEnumWidget_Next
(
pKEW
,
&
pWidget
);
ok_ole_success
(
hr
,
IKindaEnumWidget_Next
);
IKindaEnumWidget_Release
(
pKEW
);
}
IKindaEnumWidget_Release
(
pKEW
);
hr
=
IWidget_QueryInterface
(
pWidget
,
&
IID_IDispatch
,
(
void
**
)
&
pDispatch
);
ok_ole_success
(
hr
,
IWidget_QueryInterface
);
...
...
@@ -1547,7 +1544,12 @@ START_TEST(tmarshal)
CoInitializeEx
(
NULL
,
COINIT_APARTMENTTHREADED
);
hr
=
register_current_module_typelib
();
ok_ole_success
(
hr
,
register_current_module_typelib
);
if
(
FAILED
(
hr
))
{
CoUninitialize
();
win_skip
(
"Registration of the test typelib failed, skipping tests
\n
"
);
return
;
}
test_typelibmarshal
();
test_DispCallFunc
();
...
...
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