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
7d9d6707
Commit
7d9d6707
authored
Apr 29, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix some test failures on Windows.
parent
c1ea8fb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
package.c
dlls/msi/tests/package.c
+8
-9
No files found.
dlls/msi/tests/package.c
View file @
7d9d6707
...
...
@@ -2007,7 +2007,7 @@ static void test_property_table(void)
const
char
*
query
;
UINT
r
;
MSIHANDLE
hpkg
,
hdb
,
hrec
;
char
buffer
[
MAX_PATH
];
char
buffer
[
MAX_PATH
]
,
package
[
10
]
;
DWORD
sz
;
BOOL
found
;
...
...
@@ -2050,15 +2050,14 @@ static void test_property_table(void)
r
=
run_query
(
hdb
,
query
);
ok
(
r
==
ERROR_SUCCESS
,
"failed to add column
\n
"
);
hpkg
=
package_from_db
(
hdb
);
todo_wine
{
ok
(
!
hpkg
,
"package should not be created
\n
"
);
}
sprintf
(
package
,
"#%i"
,
hdb
);
r
=
MsiOpenPackage
(
package
,
&
hpkg
);
todo_wine
ok
(
r
!=
ERROR_SUCCESS
,
"MsiOpenPackage succeeded
\n
"
);
if
(
r
==
ERROR_SUCCESS
)
MsiCloseHandle
(
hpkg
);
MsiCloseHandle
(
hdb
);
MsiCloseHandle
(
hpkg
);
DeleteFile
(
msifile
);
r
=
MsiCloseHandle
(
hdb
);
ok
(
r
==
ERROR_SUCCESS
,
"MsiCloseHandle failed %u
\n
"
,
r
);
hdb
=
create_package_db
();
ok
(
hdb
,
"failed to create package database
\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