Paul Vriens : msi/tests: Fix some test failures on Vista/W2K8.

Alexandre Julliard julliard at winehq.org
Tue Sep 22 13:54:59 CDT 2009


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

Author: Paul Vriens <Paul.Vriens.Wine at gmail.com>
Date:   Sat Sep 19 09:34:07 2009 +0200

msi/tests: Fix some test failures on Vista/W2K8.

---

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

diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c
index 5fb5b53..55d9bb3 100644
--- a/dlls/msi/tests/package.c
+++ b/dlls/msi/tests/package.c
@@ -746,7 +746,8 @@ static BOOL create_file_with_version(const CHAR *name, LONG ms, LONG ls)
     BOOL ret = FALSE;
 
     GetSystemDirectory(path, MAX_PATH);
-    lstrcatA(path, "\\kernel32.dll");
+    /* Some dlls can't be updated on Vista/W2K8 */
+    lstrcatA(path, "\\version.dll");
 
     CopyFileA(path, name, FALSE);
 




More information about the wine-cvs mailing list