[MSVCRT_WINETEST] Sync with Wine Staging 1.9.18.

svn path=/trunk/; revision=72612
This commit is contained in:
Amine Khaldi 2016-09-07 22:34:15 +00:00
parent 89932f2716
commit ae503d62cc

View file

@ -746,6 +746,16 @@ static void test_strftime(void)
ok(retA == 17, "expected 17, got %ld\n", retA);
ok(!strcmp(bufA, "02/30/70 00:00:00"), "got %s\n", bufA);
}
if(!setlocale(LC_ALL, "Japanese_Japan.932")) {
win_skip("Japanese_Japan.932 locale not available\n");
return;
}
/* test with multibyte character */
retA = strftime(bufA, 256, "\x82%c", gmt_tm);
ok(retA == 3, "expected 3, got %ld\n", retA);
ok(!strcmp(bufA, "\x82%c"), "got %s\n", bufA);
}
static void test_asctime(void)