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_wcrtomb.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_wcrtomb.c')
-rw-r--r-- | test/locale-mbwc/dat_wcrtomb.c | 122 |
1 files changed, 0 insertions, 122 deletions
diff --git a/test/locale-mbwc/dat_wcrtomb.c b/test/locale-mbwc/dat_wcrtomb.c deleted file mode 100644 index 055f7b08c..000000000 --- a/test/locale-mbwc/dat_wcrtomb.c +++ /dev/null @@ -1,122 +0,0 @@ -/* - * TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY - * - * FILE: dat_wcrtomb.c - * - * WCRTOMB: intwcrtomb (char *s, wchar_t wc, mbstate_t *ps); - * - */ - -TST_WCRTOMB tst_wcrtomb_loc [] = { - { - { Twcrtomb, TST_LOC_de }, - { - /* #01 : normal case */ - { /*input.*/ { 1, 0x00FC, 0,0 }, - /*expect*/ { 0, 1,1, "ü" }, - }, - /* #02 : normal case */ - { /*input.*/ { 1, 0x00D6, 0,0 }, - /*expect*/ { 0, 1,1, "Ö" }, - }, - /* #03 : error case */ - { /*input.*/ { 1, 0xFFA1, 0,0 }, - /*expect*/ { EILSEQ,1,-1, "" }, - }, - /* #04 : */ - { /*input.*/ { 0, 0x0041, 0,0 }, - /*expect*/ { 0, 1,1, "" }, - }, - /* #05 : */ - { /*input.*/ { 0, 0x0092, 0,0 }, - /*expect*/ { 0, 1,1, "" }, - }, - { .is_last = 1 } - } - }, - { - { Twcrtomb, TST_LOC_enUS }, - { - /* #01 : normal case */ - { /*input.*/ { 1, 0x0041, 0,0 }, - /*expect*/ { 0, 1,1, "A" }, - }, - /* #02 : normal case */ - { /*input.*/ { 1, 0x0042, 0,0 }, - /*expect*/ { 0, 1,1, "B" }, - }, - /* #03 : error case */ - /* <WAIVER> x 2 */ - { /*input.*/ { 1, 0x0092, 0,0 }, /* assume ascii */ - /*expect*/ { EILSEQ,1,-1, "" }, - }, - /* #04 : */ - { /*input.*/ { 0, 0x0041, 0,0 }, - /*expect*/ { 0, 1,1, "" }, - }, - /* #05 : */ - { /*input.*/ { 0, 0x0092, 0,0 }, - /*expect*/ { 0, 1,1, "" }, - }, - { .is_last = 1 } - } - }, -#if 0 - { - { Twcrtomb, TST_LOC_eucJP }, - { - /* #01 : normal case */ - { /*input.*/ { 1, 0x3042, 0,0 }, - /*expect*/ { 0, 1,2, "\244\242" }, - }, - /* #02 : normal case */ - { /*input.*/ { 1, 0x3044, 0,0 }, - /*expect*/ { 0, 1,2, "\244\244" }, - }, - /* #03 : normal case */ - { /*input.*/ { 1, 0x008E, 0,0 }, - /*expect*/ { EILSEQ, 1,-1, "" }, - }, - /* #04 : */ - { /*input.*/ { 0, 0x3042, 0,0 }, - /*expect*/ { 0, 0,0, "" }, - }, - /* #05 : */ - { /*input.*/ { 0, 0x008E, 0,0 }, - /*expect*/ { 0, 0,0, "" }, - }, - { .is_last = 1 } - } - }, -#else - { - { Twcrtomb, TST_LOC_ja_UTF8 }, - { - /* #01 : normal case */ - { /*input.*/ { 1, 0x3042, 0,0 }, - /*expect*/ { 0, 1,3, "\343\201\202" }, - }, - /* #02 : normal case */ - { /*input.*/ { 1, 0x3044, 0,0 }, - /*expect*/ { 0, 1,3, "\343\201\204" }, - }, - /* #03 : normal case */ - { /*input.*/ { 1, 0x008E, 0,0 }, - /*expect*/ { EILSEQ, 1,-1, "" }, - }, - /* #04 : */ - { /*input.*/ { 0, 0x3042, 0,0 }, - /*expect*/ { 0, 0,0, "" }, - }, - /* #05 : */ - { /*input.*/ { 0, 0x008E, 0,0 }, - /*expect*/ { 0, 0,0, "" }, - }, - { .is_last = 1 } - } - }, -#endif - { - { Twcrtomb, TST_LOC_end } - } -}; |