msi: Fix a failing test in win9x.
This commit is contained in:
parent
d4e7845887
commit
acfc915914
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue