1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

msvcrt/tests: Add result for Turkish_Türkiye.1254.

This commit is contained in:
Daniel Lehman 2024-05-01 15:26:56 -07:00 committed by Alexandre Julliard
parent 08478473b7
commit 218c4ac115

View File

@ -573,12 +573,14 @@ static void test_setlocale(void)
ret = setlocale(LC_ALL, "trk");
ok(ret != NULL || broken (ret == NULL), "ret == NULL\n");
if(ret)
ok(!strcmp(ret, "Turkish_Turkey.1254"), "ret = %s\n", ret);
ok(!strcmp(ret, "Turkish_Turkey.1254")
|| !strcmp(ret, "Turkish_T\xfcrkiye.1254"), "ret = %s\n", ret);
ret = setlocale(LC_ALL, "turkish");
ok(ret != NULL || broken (ret == NULL), "ret == NULL\n");
if(ret)
ok(!strcmp(ret, "Turkish_Turkey.1254"), "ret = %s\n", ret);
ok(!strcmp(ret, "Turkish_Turkey.1254")
|| !strcmp(ret, "Turkish_T\xfcrkiye.1254"), "ret = %s\n", ret);
ret = setlocale(LC_ALL, "uk");
ok(ret != NULL, "ret == NULL\n");