Module: wine Branch: master Commit: 74b2c18bae80699ce7ffa5a4bf9c4202ad5af412 URL: http://source.winehq.org/git/wine.git/?a=commit;h=74b2c18bae80699ce7ffa5a4bf...
Author: Misha Koshelev mk144210@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(); }