From 6867de0714cdf717b485c956a28e13434004e896 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Fri, 18 Sep 2009 11:53:52 +0200 Subject: [PATCH] msi/tests: Skip some tests on Win9x/WinMe. --- dlls/msi/tests/install.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index 1e55c816f2f..a2b2dca627f 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -6271,6 +6271,12 @@ static void test_envvar(void) DWORD type, size; char buffer[16]; + if (on_win9x) + { + win_skip("Environment variables are handled differently on Win9x and WinMe\n"); + return; + } + create_test_files(); create_database(msifile, env_tables, sizeof(env_tables) / sizeof(msi_table));