diff options
Diffstat (limited to 'localedata/tests-mbwc/dat_strxfrm.c')
-rw-r--r-- | localedata/tests-mbwc/dat_strxfrm.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/localedata/tests-mbwc/dat_strxfrm.c b/localedata/tests-mbwc/dat_strxfrm.c index c72db38167..0005f73e46 100644 --- a/localedata/tests-mbwc/dat_strxfrm.c +++ b/localedata/tests-mbwc/dat_strxfrm.c @@ -28,27 +28,27 @@ TST_STRXFRM tst_strxfrm_loc [] = { { Tstrxfrm, TST_LOC_de }, { { /*inp*/ { "\xf6\xc4\xe4\xfc", "\xf6\xc4\xe4\xfc", 17, 17 }, /* #01 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /*inp*/ { "aA", "Aa", 10, 10 }, /* #02 */ - /*exp*/ { 1,0,0,0 , }, + /*exp*/ { 0,0,0 , }, }, { /*inp*/ { "Aa", "aA", 10, 10 }, /* #03 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /*inp*/ { "abc", "", 13, 13 }, /* #04 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /*inp*/ { "a", "B", 7, 7 }, /* #05 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /*inp*/ { "B", "a", 7, 7 }, /* #06 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /* hiragana == latin1 */ /*inp*/ { "abc", "\244\241\244\242", 13, 9 }, /* #07 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { is_last: 1 } } @@ -57,28 +57,28 @@ TST_STRXFRM tst_strxfrm_loc [] = { { Tstrxfrm, TST_LOC_enUS }, { { /*inp*/ { "abcd", "abcd", 17, 17 }, /* #01 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /*inp*/ { "aA", "Aa", 10, 10 }, /* #02 */ - /*exp*/ { 1,0,0,0 , }, + /*exp*/ { 0,0,0 , }, }, { /*inp*/ { "Aa", "aA", 10, 10 }, /* #03 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /*inp*/ { "abc", "", 13, 13 }, /* #04 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /*inp*/ { "a", "B", 7, 7 }, /* #05 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /*inp*/ { "B", "a", 7, 7 }, /* #06 */ - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, #ifdef NO_WAIVER { /* <WAIVER> */ /*inp*/ { "abc", "\244\241\244\242", 13, 9 }, /* #07 */ - /*exp*/ { 1,EINVAL,0,0, }, + /*exp*/ { EINVAL,0,0, }, }, #endif { is_last: 1 } @@ -90,22 +90,22 @@ TST_STRXFRM tst_strxfrm_loc [] = { { /* #01 */ /*inp*/ { "\244\242\244\241", "\244\241\244\242", 5, 5 }, - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /* #02 */ /*inp*/ { "\244\241\244\242", "\244\242\244\241", 5, 5 }, - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, { /* #03 */ /*inp*/ { "\244\242\216\261", "\216\261\244\242", 5, 5 }, - /*exp*/ { 1,0,0,0, }, + /*exp*/ { 0,0,0, }, }, #ifdef NO_WAIVER { /*inp*/ { "AAA", "\216\217", 5, 5 }, /* #04 */ /* <WAIVER> */ - /*exp*/ { 1,EINVAL,0,0, }, + /*exp*/ { EINVAL,0,0, }, }, #endif { is_last: 1 } |