Module: wine Branch: master Commit: 35df8f2d69af0fd9e67cfc4d19fafe2c28105953 URL: http://source.winehq.org/git/wine.git/?a=commit;h=35df8f2d69af0fd9e67cfc4d19...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Fri Oct 2 09:56:09 2009 +0200
msi/tests: Skip some tests on Win9x/WinMe.
---
dlls/msi/tests/install.c | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index ab305bf..0044e03 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -6767,6 +6767,12 @@ static void test_file_in_use(void) HKEY hkey; char path[MAX_PATH];
+ if (on_win9x) + { + win_skip("Pending file renaming is implemented differently on Win9x and WinMe\n"); + return; + } + RegOpenKeyExA(HKEY_LOCAL_MACHINE, session_manager, 0, KEY_ALL_ACCESS, &hkey); if (!RegQueryValueExA(hkey, rename_ops, NULL, NULL, NULL, &size)) { @@ -6814,6 +6820,12 @@ static void test_file_in_use_cab(void) HKEY hkey; char path[MAX_PATH];
+ if (on_win9x) + { + win_skip("Pending file renaming is implemented differently on Win9x and WinMe\n"); + return; + } + RegOpenKeyExA(HKEY_LOCAL_MACHINE, session_manager, 0, KEY_ALL_ACCESS, &hkey); if (!RegQueryValueExA(hkey, rename_ops, NULL, NULL, NULL, &size)) {