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
fa21e6dd
Commit
fa21e6dd
authored
Feb 05, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 05, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3/tests: Fix a couple of test failure when msxml4 is actually present.
parent
6e2de14d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
domdoc.c
dlls/msxml3/tests/domdoc.c
+5
-2
No files found.
dlls/msxml3/tests/domdoc.c
View file @
fa21e6dd
...
...
@@ -9807,6 +9807,8 @@ static void test_mxnamespacemanager(void)
EXPECT_REF
(
mgr2
,
2
);
prefixes
=
NULL
;
hr
=
IVBMXNamespaceManager_getDeclaredPrefixes
(
mgr2
,
&
prefixes
);
todo_wine
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
if
(
hr
==
S_OK
)
{
IDispatchEx
*
dispex
;
...
...
@@ -9841,8 +9843,9 @@ static void test_mxnamespacemanager(void)
V_DISPATCH
(
&
ret
)
=
(
void
*
)
0x1
;
hr
=
IDispatchEx_Invoke
(
dispex
,
DISPID_VALUE
,
&
IID_NULL
,
0
,
DISPATCH_METHOD
,
&
dispparams
,
&
ret
,
NULL
,
NULL
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
V_VT
(
&
ret
)
==
VT_DISPATCH
,
"got %d
\n
"
,
V_VT
(
&
ret
));
ok
(
V_DISPATCH
(
&
ret
)
==
NULL
,
"got %p
\n
"
,
V_DISPATCH
(
&
ret
));
ok
(
V_VT
(
&
ret
)
==
VT_BSTR
,
"got %d
\n
"
,
V_VT
(
&
ret
));
ok
(
V_BSTR
(
&
ret
)
!=
NULL
,
"got %p
\n
"
,
V_BSTR
(
&
ret
));
VariantClear
(
&
ret
);
IDispatchEx_Release
(
dispex
);
IMXNamespacePrefixes_Release
(
prefixes
);
...
...
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