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
5ee995d9
Commit
5ee995d9
authored
May 18, 2007
by
Misha Koshelev
Committed by
Alexandre Julliard
May 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: automation: Fix Installer_ProductInfo ok message to correctly state function.
parent
08fc6508
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
automation.c
dlls/msi/tests/automation.c
+2
-2
No files found.
dlls/msi/tests/automation.c
View file @
5ee995d9
...
...
@@ -1703,13 +1703,13 @@ static void test_Installer_InstallProduct(LPCWSTR szPath)
memset
(
szString
,
0
,
sizeof
(
szString
));
hr
=
Installer_ProductInfo
(
szProductCode
,
INSTALLPROPERTY_PACKAGENAMEW
,
szString
);
todo_wine
ok
(
hr
==
S_OK
,
"Installer_ProductInfo failed, hresult 0x%08x
\n
"
,
hr
);
todo_wine
ok_w2
(
"
StringList_Item
returned %s but expected %s
\n
"
,
szString
,
szMsifile
);
todo_wine
ok_w2
(
"
Installer_ProductInfo
returned %s but expected %s
\n
"
,
szString
,
szMsifile
);
/* Product name */
memset
(
szString
,
0
,
sizeof
(
szString
));
hr
=
Installer_ProductInfo
(
szProductCode
,
INSTALLPROPERTY_PRODUCTNAMEW
,
szString
);
ok
(
hr
==
S_OK
,
"Installer_ProductInfo failed, hresult 0x%08x
\n
"
,
hr
);
ok_w2
(
"
StringList_Item
returned %s but expected %s
\n
"
,
szString
,
szMSITEST
);
ok_w2
(
"
Installer_ProductInfo
returned %s but expected %s
\n
"
,
szString
,
szMSITEST
);
/* Installer::RelatedProducts for our upgrade code */
hr
=
Installer_RelatedProducts
(
szUpgradeCode
,
&
pStringList
);
...
...
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