From 35df8f2d69af0fd9e67cfc4d19fafe2c28105953 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Fri, 2 Oct 2009 09:56:09 +0200 Subject: [PATCH] msi/tests: Skip some tests on Win9x/WinMe. --- dlls/msi/tests/install.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index ab305bf35af..0044e0347b6 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)) { -- 2.11.4.GIT