From c1e3f831ec993b7220e6ac59669997bf98f4575e Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 17 Mar 2008 16:58:16 -0500 Subject: [PATCH] msi: Skip the Installer object tests on win9x. --- dlls/msi/tests/automation.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/msi/tests/automation.c b/dlls/msi/tests/automation.c index abdd2e454ec..a44a3aaf610 100644 --- a/dlls/msi/tests/automation.c +++ b/dlls/msi/tests/automation.c @@ -2168,6 +2168,12 @@ static void test_Installer_InstallProduct(void) /* Installer::InstallProduct */ hr = Installer_InstallProduct(szMsifile, NULL); + if (hr == DISP_E_EXCEPTION) + { + skip("Installer object not supported.\n"); + delete_test_files(); + return; + } ok(hr == S_OK, "Installer_InstallProduct failed, hresult 0x%08x\n", hr); /* Installer::ProductState for our product code, which has been installed */ -- 2.11.4.GIT