Commit 51c03149 authored by Alexandre Julliard's avatar Alexandre Julliard

mlang/tests: Add another possible failure for Win2k.

parent 25718e1a
......@@ -1946,7 +1946,9 @@ static void test_IsCodePageInstallable(IMultiLanguage2 *ml2)
* up an installation dialog on some platforms, even when specifying CPIOD_PEEK.
*/
if (IsValidCodePage(i))
ok(hr == S_OK || broken(hr == E_INVALIDARG), /* win2k */
ok(hr == S_OK ||
broken(hr == S_FALSE) || /* win2k */
broken(hr == E_INVALIDARG), /* win2k */
"code page %u is valid but not installable 0x%08x\n", i, hr);
}
}
......
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