msi: Fix a failing test in win9x.

oldstable
James Hawkins 2008-10-24 07:14:52 -05:00 committed by Alexandre Julliard
parent d4e7845887
commit acfc915914
1 changed files with 6 additions and 1 deletions

View File

@ -6864,7 +6864,12 @@ static void test_dbmerge(void)
GetCurrentDirectoryA(MAX_PATH, buf);
r = MsiDatabaseImportA(hdb, buf, "codepage.idt");
todo_wine ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
todo_wine
{
ok(r == ERROR_SUCCESS ||
broken(r == ERROR_FUNCTION_FAILED), /* win9x */
"Expected ERROR_SUCCESS, got %d\n", r);
}
query = "DROP TABLE `One`";
r = run_query(hdb, 0, query);