diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-28 20:29:21 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-28 20:31:55 +0200 |
commit | 99ef2719fb3d703fe38c4113cd7f5adec516dd3a (patch) | |
tree | 2c1f77cb41b60ccbf8faa77a3640491a3546b546 /test/locale-mbwc/dat_wcsxfrm.c | |
parent | 543308f6c46cf2edf8a524bc9c631e472570fe72 (diff) |
test: remove test suite
The test suite is now a developed in a separate git repository.
See here:
http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git
The test suite should be just like every other software compiled
with the cross-toolchain. In the past strange problems where found
when the test suite got build in the toolchain creation step.
Diffstat (limited to 'test/locale-mbwc/dat_wcsxfrm.c')
-rw-r--r-- | test/locale-mbwc/dat_wcsxfrm.c | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/test/locale-mbwc/dat_wcsxfrm.c b/test/locale-mbwc/dat_wcsxfrm.c deleted file mode 100644 index acb6727a8..000000000 --- a/test/locale-mbwc/dat_wcsxfrm.c +++ /dev/null @@ -1,102 +0,0 @@ -/* - * TEST SUITE FOR MB/WC FUNCTIONS IN CLIBRARY - * - * FILE: dat_wcsxfrm.c - * - * WCSXFRM: size_t wcsxfrm (char *s1, const char s2, size_t n); - */ - -/* - * NOTE: - * - * Return value and errno value are checked only for 2nd string: - * org2[]; n1 and n2 don't mean bytes to be translated. - * It means a buffer size including a null character. - * Results of this test depens on results of wcscoll(). - * If you got errors, check both test results. - */ - - -TST_WCSXFRM tst_wcsxfrm_loc [] = { - - { - { Twcsxfrm, TST_LOC_de }, - { - { /*inp*/ { { 0x00C1,0x0000 }, { 0x00C1,0x0000 }, 7, 7 }, /* #01 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x0042,0x0000 }, { 0x0061,0x0000 }, 7, 7 }, /* #02 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x0061,0x0000 }, { 0x0042,0x0000 }, 7, 7 }, /* #03 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x00E4,0x0000 }, { 0x00DC,0x0000 }, 7, 7 }, /* #04 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x00DC,0x0000 }, { 0x00E4,0x0000 }, 7, 7 }, /* #05 */ - /*exp*/ { 0, 0,0, }, - }, - { .is_last = 1 } - } - }, - { - { Twcsxfrm, TST_LOC_enUS }, - { - { /*inp*/ { { 0x0041,0x0000 }, { 0x0041,0x0000 }, 7, 7 }, /* #01 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x0042,0x0000 }, { 0x0061,0x0000 }, 7, 7 }, /* #02 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x0061,0x0000 }, { 0x0042,0x0000 }, 7, 7 }, /* #03 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x0000,0x0000 }, { 0x0000,0x0000 }, 7, 7 }, /* #04 */ - /*exp*/ { 0, 0,0, }, - }, -#ifdef NO_WAIVER - { /* <WAIVER> x 2 */ - /*inp*/ { { 0x3061,0x0000 }, { 0xFF42,0x0000 }, 7, 7 }, /* #05 */ - /* <WAIVER> */ - /*exp*/ { EINVAL, 1,(size_t)-1, }, - }, -#endif - { .is_last = 1 } - } - }, - { -#if 0 - { Twcsxfrm, TST_LOC_eucJP }, /* need more test data ! */ -#else - { Twcsxfrm, TST_LOC_ja_UTF8 }, /* need more test data ! */ -#endif - { - { /*inp*/ { { 0x3041,0x0000 }, { 0x3041,0x0000 }, 7, 7 }, /* #01 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x0042,0x0000 }, { 0x0061,0x0000 }, 7, 7 }, /* #02 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x0061,0x0000 }, { 0x0042,0x0000 }, 7, 7 }, /* #03 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0x30A2,0x0000 }, { 0xFF71,0x0000 }, 7, 7 }, /* #04 */ - /*exp*/ { 0, 0,0, }, - }, - { /*inp*/ { { 0xFF71,0x0000 }, { 0x30A2,0x0000 }, 7, 7 }, /* #05 */ - /*exp*/ { 0, 0,0, }, - }, -#ifdef NO_WAIVER - /* <WAIVER> x 2 */ - { /*inp*/ { { 0x008E,0x0000 }, { 0x008F,0x0000 }, 7, 7 }, /* #06 */ - /*exp*/ { EINVAL, 1,(size_t)-1, }, - }, -#endif - { .is_last = 1 } - } - }, - { - { Twcsxfrm, TST_LOC_end } - } -}; |