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_wctob.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_wctob.c')
-rw-r--r-- | test/locale-mbwc/dat_wctob.c | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/test/locale-mbwc/dat_wctob.c b/test/locale-mbwc/dat_wctob.c deleted file mode 100644 index dfd344eb8..000000000 --- a/test/locale-mbwc/dat_wctob.c +++ /dev/null @@ -1,61 +0,0 @@ -/* - * TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY - * - * FILE: dat_wctob.c - * - * ISW*: int wctob( wint_t wc ); - */ - - -TST_WCTOB tst_wctob_loc [] = { - - { { Twctob, TST_LOC_de }, - { - { { WEOF }, { 0, 1, EOF } }, - { { 0x0020 }, { 0, 1, 0x20 } }, - { { 0x0061 }, { 0, 1, 0x61 } }, - { { 0x0080 }, { 0, 1, 0x80 } }, - { { 0x00C4 }, { 0, 1, 0xC4 } }, - { { 0x30C4 }, { 0, 1, EOF } }, - { .is_last = 1 } /* Last element. */ - } - }, - { { Twctob, TST_LOC_enUS }, - { - { { WEOF }, { 0, 1, EOF } }, - { { 0x0020 }, { 0, 1, 0x20 } }, - { { 0x0061 }, { 0, 1, 0x61 } }, -#ifdef SHOJI_IS_RIGHT - { { 0x0080 }, { 0, 1, 0x80 } }, - { { 0x00C4 }, { 0, 1, 0xC4 } }, -#else - /* XXX These are no valid characters. */ - { { 0x0080 }, { 0, 1, EOF } }, - { { 0x00C4 }, { 0, 1, EOF } }, -#endif - { { 0x30C4 }, { 0, 1, EOF } }, - { .is_last = 1 } /* Last element. */ - } - }, -#if 0 - { { Twctob, TST_LOC_eucJP }, -#else - { { Twctob, TST_LOC_ja_UTF8 }, -#endif - { - { { WEOF }, { 0, 1, EOF } }, - { { 0x0020 }, { 0, 1, 0x20 } }, - { { 0x0061 }, { 0, 1, 0x61 } }, -#if 0 - { { 0x0080 }, { 0, 1, 0x80 } }, -#else - { { 0x0080 }, { 0, 1, EOF } }, -#endif - { { 0x00FF }, { 0, 1, EOF } }, - { { 0x00C4 }, { 0, 1, EOF } }, - { { 0x30C4 }, { 0, 1, EOF } }, - { .is_last = 1 } /* Last element. */ - } - }, - { { Twctob, TST_LOC_end } } -}; |