diff options
Diffstat (limited to 'localedata/tests-mbwc/dat_wcrtomb.c')
-rw-r--r-- | localedata/tests-mbwc/dat_wcrtomb.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/localedata/tests-mbwc/dat_wcrtomb.c b/localedata/tests-mbwc/dat_wcrtomb.c index 529232396f..e256363111 100644 --- a/localedata/tests-mbwc/dat_wcrtomb.c +++ b/localedata/tests-mbwc/dat_wcrtomb.c @@ -13,23 +13,23 @@ TST_WCRTOMB tst_wcrtomb_loc [] = { { /* #01 : normal case */ { /*input.*/ { 1, 0x00FC, 0,0 }, - /*expect*/ { 1,0, 1,1, "ü" }, + /*expect*/ { 0, 1,1, "ü" }, }, /* #02 : normal case */ { /*input.*/ { 1, 0x00D6, 0,0 }, - /*expect*/ { 1,0, 1,1, "Ö" }, + /*expect*/ { 0, 1,1, "Ö" }, }, /* #03 : error case */ { /*input.*/ { 1, 0xFFA1, 0,0 }, - /*expect*/ { 1, EILSEQ,1,-1, "" }, + /*expect*/ { EILSEQ,1,-1, "" }, }, /* #04 : */ { /*input.*/ { 0, 0x0041, 0,0 }, - /*expect*/ { 1,0, 1,1, "" }, + /*expect*/ { 0, 1,1, "" }, }, /* #05 : */ { /*input.*/ { 0, 0x0092, 0,0 }, - /*expect*/ { 1,0, 1,1, "" }, + /*expect*/ { 0, 1,1, "" }, }, { is_last: 1 } } @@ -39,24 +39,24 @@ TST_WCRTOMB tst_wcrtomb_loc [] = { { /* #01 : normal case */ { /*input.*/ { 1, 0x0041, 0,0 }, - /*expect*/ { 0,0, 1,1, "A" }, + /*expect*/ { 0, 1,1, "A" }, }, /* #02 : normal case */ { /*input.*/ { 1, 0x0042, 0,0 }, - /*expect*/ { 0,0, 1,1, "B" }, + /*expect*/ { 0, 1,1, "B" }, }, /* #03 : error case */ /* <WAIVER> x 2 */ { /*input.*/ { 1, 0x0092, 0,0 }, /* assume ascii */ - /*expect*/ { 1, EILSEQ,1,-1, "" }, + /*expect*/ { EILSEQ,1,-1, "" }, }, /* #04 : */ { /*input.*/ { 0, 0x0041, 0,0 }, - /*expect*/ { 1,0, 1,1, "" }, + /*expect*/ { 0, 1,1, "" }, }, /* #05 : */ { /*input.*/ { 0, 0x0092, 0,0 }, - /*expect*/ { 1,0, 1,1, "" }, + /*expect*/ { 0, 1,1, "" }, }, { is_last: 1 } } @@ -66,23 +66,23 @@ TST_WCRTOMB tst_wcrtomb_loc [] = { { /* #01 : normal case */ { /*input.*/ { 1, 0x3042, 0,0 }, - /*expect*/ { 0,0, 1,2, "\244\242" }, + /*expect*/ { 0, 1,2, "\244\242" }, }, /* #02 : normal case */ { /*input.*/ { 1, 0x3044, 0,0 }, - /*expect*/ { 0,0, 1,2, "\244\244" }, + /*expect*/ { 0, 1,2, "\244\244" }, }, /* #03 : normal case */ { /*input.*/ { 1, 0x008E, 0,0 }, - /*expect*/ { 1,EILSEQ, 1,-1, "" }, + /*expect*/ { EILSEQ, 1,-1, "" }, }, /* #04 : */ { /*input.*/ { 0, 0x3042, 0,0 }, - /*expect*/ { 1,0, 0,0, "" }, + /*expect*/ { 0, 0,0, "" }, }, /* #05 : */ { /*input.*/ { 0, 0x008E, 0,0 }, - /*expect*/ { 1,0, 0,0, "" }, + /*expect*/ { 0, 0,0, "" }, }, { is_last: 1 } } |