Commit 194c0530 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

msi/tests: Skip tests on win9x due to different registry keys.

parent cb69bd63
......@@ -9523,6 +9523,15 @@ static void test_MsiGetProductProperty(void)
DWORD size;
LONG res;
UINT r;
SC_HANDLE scm;
scm = OpenSCManager(NULL, NULL, SC_MANAGER_CONNECT);
if (!scm && (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED))
{
win_skip("Different registry keys on Win9x and WinMe\n");
return;
}
CloseServiceHandle(scm);
GetCurrentDirectoryA(MAX_PATH, path);
lstrcatA(path, "\\");
......
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