msi/tests: Fix a failing test on all platforms up to and including win2k.
This commit is contained in:
parent
67be353040
commit
cec5d3f514
|
@ -6860,15 +6860,13 @@ static void test_dbmerge(void)
|
|||
r = run_query(hdb, 0, query);
|
||||
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
|
||||
|
||||
create_file_data("codepage.idt", "\r\n\r\n28603\t_ForceCodepage\r\n", 0);
|
||||
create_file_data("codepage.idt", "\r\n\r\n850\t_ForceCodepage\r\n", 0);
|
||||
|
||||
GetCurrentDirectoryA(MAX_PATH, buf);
|
||||
r = MsiDatabaseImportA(hdb, buf, "codepage.idt");
|
||||
todo_wine
|
||||
{
|
||||
ok(r == ERROR_SUCCESS ||
|
||||
broken(r == ERROR_FUNCTION_FAILED), /* win9x */
|
||||
"Expected ERROR_SUCCESS, got %d\n", r);
|
||||
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
|
||||
}
|
||||
|
||||
query = "DROP TABLE `One`";
|
||||
|
|
Loading…
Reference in New Issue