April 13, 2026
5:17 p.m.
Nikolay Sivov (@nsivov) commented about dlls/msxml3/tests/domdoc.c:
+ const struct codepage_test { + const CHAR *cp; + BOOL supported; + } zhcn_tests[] = { + {"GB2312", TRUE}, + {"GBK", TRUE}, + {"Windows-936", FALSE}, + }; + + GetSystemDefaultLocaleName(locale, sizeof(locale)); + if (!wcscmp(locale, L"ja-JP") || !wcscmp(locale, L"en-AE")) + { + win_skip("Skipping tests on Japanese and English (AE) Windows.\n" ); + return; + } + Why would system locale matter?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/10646#note_135979