mlang/tests: Add another possible failure for Win2k.

This commit is contained in:
Alexandre Julliard 2010-02-23 11:26:32 +01:00
parent 25718e1af3
commit 51c0314951

View File

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