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
595983f4
Commit
595983f4
authored
Jan 26, 2007
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add todos around tests that aren't being run yet, but will fail.
parent
7fe51663
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
iface.c
dlls/msi/tests/iface.c
+8
-1
No files found.
dlls/msi/tests/iface.c
View file @
595983f4
...
...
@@ -63,6 +63,7 @@ static void test_msi_dispid(void)
return
;
}
todo_wine
{
ok
(
get_dispid
(
disp
,
"OpenPackage"
)
==
2
,
"dispid wrong
\n
"
);
ok
(
get_dispid
(
disp
,
"OpenProduct"
)
==
3
,
"dispid wrong
\n
"
);
ok
(
get_dispid
(
disp
,
"OpenDatabase"
)
==
4
,
"dispid wrong
\n
"
);
...
...
@@ -118,6 +119,7 @@ static void test_msi_dispid(void)
ok
(
get_dispid
(
disp
,
"PatchesEx"
)
==
55
,
"dispid wrong
\n
"
);
ok
(
get_dispid
(
disp
,
"ExtractPatchXMLData"
)
==
57
,
"dispid wrong
\n
"
);
}
/* MSDN claims the following functions exist but IDispatch->GetIDsOfNames disagrees */
if
(
0
)
...
...
@@ -166,7 +168,12 @@ static void test_msi_invoke(void)
r
=
IDispatch_Invoke
(
installer
,
dispid
,
&
IID_NULL
,
0
,
DISPATCH_METHOD
,
&
param
,
&
result
,
NULL
,
NULL
);
ok
(
r
==
S_OK
,
"dispatch failed %08x
\n
"
,
r
);
todo_wine
ok
(
r
==
S_OK
,
"dispatch failed %08x
\n
"
,
r
);
if
(
FAILED
(
r
))
{
skip
(
"failed to create record
\n
"
);
return
;
}
ok
(
V_VT
(
&
result
)
==
VT_DISPATCH
,
"type wrong
\n
"
);
...
...
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