From: Amine Khaldi Date: Wed, 7 Sep 2016 22:34:15 +0000 (+0000) Subject: [MSVCRT_WINETEST] Sync with Wine Staging 1.9.18. X-Git-Tag: backups/sndblst@72664~48 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=ae503d62ccd965390be72ea6159cd8e49a9b6d04 [MSVCRT_WINETEST] Sync with Wine Staging 1.9.18. svn path=/trunk/; revision=72612 --- diff --git a/rostests/winetests/msvcrt/time.c b/rostests/winetests/msvcrt/time.c index e26648d1dc3..6865e3d2691 100644 --- a/rostests/winetests/msvcrt/time.c +++ b/rostests/winetests/msvcrt/time.c @@ -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)