Commit c1e3f831 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Skip the Installer object tests on win9x.

parent 55365b77
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment