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
9cc4b0ca
Commit
9cc4b0ca
authored
Oct 13, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: Don't create a nested restore point on recent versions of MSI.
We now set the MSIFASTINSTALL property which disables restore points.
parent
5d0a6b00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
4 deletions
+15
-4
install.c
dlls/msi/tests/install.c
+8
-2
package.c
dlls/msi/tests/package.c
+7
-2
No files found.
dlls/msi/tests/install.c
View file @
9cc4b0ca
...
...
@@ -42,6 +42,8 @@ static UINT (WINAPI *pMsiSourceListEnumSourcesA)
(
LPCSTR
,
LPCSTR
,
MSIINSTALLCONTEXT
,
DWORD
,
DWORD
,
LPSTR
,
LPDWORD
);
static
UINT
(
WINAPI
*
pMsiSourceListGetInfoA
)
(
LPCSTR
,
LPCSTR
,
MSIINSTALLCONTEXT
,
DWORD
,
LPCSTR
,
LPSTR
,
LPDWORD
);
static
INSTALLSTATE
(
WINAPI
*
pMsiGetComponentPathExA
)
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
MSIINSTALLCONTEXT
,
LPSTR
,
LPDWORD
);
static
BOOL
(
WINAPI
*
pConvertSidToStringSidA
)(
PSID
,
LPSTR
*
);
static
BOOL
(
WINAPI
*
pGetTokenInformation
)(
HANDLE
,
TOKEN_INFORMATION_CLASS
,
LPVOID
,
DWORD
,
PDWORD
);
...
...
@@ -3266,6 +3268,7 @@ static void init_functionpointers(void)
GET_PROC
(
hmsi
,
MsiSetExternalUIRecord
);
GET_PROC
(
hmsi
,
MsiSourceListEnumSourcesA
);
GET_PROC
(
hmsi
,
MsiSourceListGetInfoA
);
GET_PROC
(
hmsi
,
MsiGetComponentPathExA
);
GET_PROC
(
hadvapi32
,
ConvertSidToStringSidA
);
GET_PROC
(
hadvapi32
,
GetTokenInformation
);
...
...
@@ -10955,8 +10958,11 @@ START_TEST(install)
/* Create a restore point ourselves so we circumvent the multitude of restore points
* that would have been created by all the installation and removal tests.
*
* This is not needed on version 5.0 where setting MSIFASTINSTALL prevents the
* creation of restore points.
*/
if
(
pSRSetRestorePointA
)
if
(
pSRSetRestorePointA
&&
!
pMsiGetComponentPathExA
)
{
memset
(
&
status
,
0
,
sizeof
(
status
));
ret
=
notify_system_change
(
BEGIN_NESTED_SYSTEM_CHANGE
,
&
status
);
...
...
@@ -11046,7 +11052,7 @@ START_TEST(install)
DeleteFileA
(
log_file
);
if
(
pSRSetRestorePointA
&&
ret
)
if
(
pSRSetRestorePointA
&&
!
pMsiGetComponentPathExA
&&
ret
)
{
ret
=
notify_system_change
(
END_NESTED_SYSTEM_CHANGE
,
&
status
);
if
(
ret
)
...
...
dlls/msi/tests/package.c
View file @
9cc4b0ca
...
...
@@ -36,6 +36,7 @@ static const char msifile[] = "winetest-package.msi";
static
char
CURR_DIR
[
MAX_PATH
];
static
UINT
(
WINAPI
*
pMsiApplyMultiplePatchesA
)(
LPCSTR
,
LPCSTR
,
LPCSTR
);
static
INSTALLSTATE
(
WINAPI
*
pMsiGetComponentPathExA
)(
LPCSTR
,
LPCSTR
,
LPCSTR
,
MSIINSTALLCONTEXT
,
LPSTR
,
LPDWORD
);
static
HRESULT
(
WINAPI
*
pSHGetFolderPathA
)(
HWND
,
int
,
HANDLE
,
DWORD
,
LPSTR
);
static
BOOL
(
WINAPI
*
pConvertSidToStringSidA
)(
PSID
,
LPSTR
*
);
...
...
@@ -62,6 +63,7 @@ static void init_functionpointers(void)
p ## func = (void*)GetProcAddress(mod, #func);
GET_PROC
(
hmsi
,
MsiApplyMultiplePatchesA
);
GET_PROC
(
hmsi
,
MsiGetComponentPathExA
);
GET_PROC
(
hshell32
,
SHGetFolderPathA
);
GET_PROC
(
hadvapi32
,
ConvertSidToStringSidA
);
...
...
@@ -12829,8 +12831,11 @@ START_TEST(package)
/* Create a restore point ourselves so we circumvent the multitude of restore points
* that would have been created by all the installation and removal tests.
*
* This is not needed on version 5.0 where setting MSIFASTINSTALL prevents the
* creation of restore points.
*/
if
(
pSRSetRestorePointA
)
if
(
pSRSetRestorePointA
&&
!
pMsiGetComponentPathExA
)
{
memset
(
&
status
,
0
,
sizeof
(
status
));
ret
=
notify_system_change
(
BEGIN_NESTED_SYSTEM_CHANGE
,
&
status
);
...
...
@@ -12868,7 +12873,7 @@ START_TEST(package)
test_MsiApplyMultiplePatches
();
test_MsiApplyPatch
();
if
(
pSRSetRestorePointA
&&
ret
)
if
(
pSRSetRestorePointA
&&
!
pMsiGetComponentPathExA
&&
ret
)
{
ret
=
notify_system_change
(
END_NESTED_SYSTEM_CHANGE
,
&
status
);
if
(
ret
)
...
...
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