usp10/tests: Skip some tests on WinME.
This commit is contained in:
parent
dff10db044
commit
69d27865f6
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue