msi/tests: Create only one log file and delete it afterwards.

This commit is contained in:
Paul Vriens 2008-09-10 14:34:13 +02:00 committed by Alexandre Julliard
parent 067cbc57f3
commit 58ddb6f564
1 changed files with 7 additions and 0 deletions

View File

@ -5459,6 +5459,11 @@ START_TEST(install)
ret = notify_system_change(BEGIN_NESTED_SYSTEM_CHANGE, &status);
}
/* Create only one log file and don't append. We have to pass something
* for the log mode for this to work.
*/
MsiEnableLogA(INSTALLLOGMODE_FATALEXIT, "msitest.log", 0);
test_MsiInstallProduct();
test_MsiSetComponentState();
test_packagecoltypes();
@ -5495,6 +5500,8 @@ START_TEST(install)
test_MsiConfigureProductEx();
test_missingcomponent();
DeleteFileA("msitest.log");
if (pSRSetRestorePointA && ret)
{
ret = notify_system_change(END_NESTED_SYSTEM_CHANGE, &status);