Module: wine Branch: master Commit: 51c0314951220e72567cdccafac0de7eb420737a URL: http://source.winehq.org/git/wine.git/?a=commit;h=51c0314951220e72567cdccafa...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Feb 23 11:26:32 2010 +0100
mlang/tests: Add another possible failure for Win2k.
---
dlls/mlang/tests/mlang.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/mlang/tests/mlang.c b/dlls/mlang/tests/mlang.c index 11e26db..7ab3ff9 100644 --- a/dlls/mlang/tests/mlang.c +++ b/dlls/mlang/tests/mlang.c @@ -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); } }