usp10/tests: Skip some tests on WinME.

This commit is contained in:
Paul Vriens 2009-04-11 14:17:45 +02:00 committed by Alexandre Julliard
parent dff10db044
commit 69d27865f6
1 changed files with 6 additions and 0 deletions

View File

@ -1183,6 +1183,12 @@ static void test_digit_substitution(void)
for (i = 0; i < sizeof(groups)/sizeof(groups[0]); i++)
{
ret = pEnumLanguageGroupLocalesA(enum_proc, groups[i], 0, 0);
if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{
win_skip("EnumLanguageGroupLocalesA not implemented on this platform\n");
break;
}
ok(ret, "EnumLanguageGroupLocalesA failed unexpectedly: %u\n", GetLastError());
}
}