Misha Koshelev : msi/tests: automation: Installer::InstallProduct, remove a registry key set by Wine but not native.

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 21 09:40:19 CDT 2007


Module: wine
Branch: master
Commit: 74b2c18bae80699ce7ffa5a4bf9c4202ad5af412
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=74b2c18bae80699ce7ffa5a4bf9c4202ad5af412

Author: Misha Koshelev <mk144210 at bcm.edu>
Date:   Sun May 20 14:31:47 2007 -0500

msi/tests: automation: Installer::InstallProduct, remove a registry key set by Wine but not native.

---

 dlls/msi/tests/automation.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/dlls/msi/tests/automation.c b/dlls/msi/tests/automation.c
index 9bd7d03..1be45b9 100644
--- a/dlls/msi/tests/automation.c
+++ b/dlls/msi/tests/automation.c
@@ -1814,6 +1814,9 @@ static void test_Installer_InstallProduct(LPCWSTR szPath)
 
     RegCloseKey(hkey);
 
+    res = RegDeleteKeyA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Installer\\Products\\05FA3C1F65B896A40AC00077F34EF203");
+    todo_wine ok(res == ERROR_FILE_NOT_FOUND, "Expected ERROR_SUCCESS, got %d\n", res);
+
     /* Delete installation files we installed */
     delete_test_files();
 }




More information about the wine-cvs mailing list