From 99ef2719fb3d703fe38c4113cd7f5adec516dd3a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 28 Oct 2016 20:29:21 +0200 Subject: 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. --- test/locale-mbwc/dat_wcstombs.c | 271 ---------------------------------------- 1 file changed, 271 deletions(-) delete mode 100644 test/locale-mbwc/dat_wcstombs.c (limited to 'test/locale-mbwc/dat_wcstombs.c') diff --git a/test/locale-mbwc/dat_wcstombs.c b/test/locale-mbwc/dat_wcstombs.c deleted file mode 100644 index ffeb0ef80..000000000 --- a/test/locale-mbwc/dat_wcstombs.c +++ /dev/null @@ -1,271 +0,0 @@ -/* - * TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY - * - * FILE: dat_wcstombs.c - * - * WCSTOMBS: size_t wcstombs (char *s, const wchar_t *ws, size_t n) - */ - - -/* - * CAUTION: - * Do not use a value 0x01 for string data. The test program - * uses it. - * - */ - - -TST_WCSTOMBS tst_wcstombs_loc [] = { - { - { Twcstombs, TST_LOC_de }, - { - /* #01 : Any chars including a null char should not be stored in s. */ - { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 0 }, - /*expect*/ { 0,1,0, "" }, - }, - /* #02 : Only one chars should be stored in s. No null termination. */ - { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 1 }, - /*expect*/ { 0,1,1, "Ä" }, - }, - /* #03 : Only two chars should be stored in s. No null termination. */ - { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 2 }, - /*expect*/ { 0,1,2, "ÄÖ" }, - }, - /* #04 : Only three chars should be stored in s. No null - termination. */ - { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 3 }, - /*expect*/ { 0,1,3, "ÄÖÜ" }, - }, - /* #05 : Only three chars should be stored in s with a null - termination. */ - { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 4 }, - /*expect*/ { 0,1,3, "ÄÖÜ" }, - }, - /* #06 : Only three chars should be stored in s with a null - termination. */ - { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 5 }, - /*expect*/ { 0,1,3, "ÄÖÜ" }, - }, - /* #07 : Invalid mb sequence. No chars should be stored in s. */ - { /*input.*/ { 1,1, { 0x0201,0x0221,0x0000,0x0000 }, 2 }, - /*expect*/ { EILSEQ,1,(size_t)-1, "" }, - }, - /* #08 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 0 }, - /*expect*/ { 0,1,3, "" }, - }, - /* #09 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 1 }, - /*expect*/ { 0,1,3, "" }, - }, - /* #10 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 5 }, - /*expect*/ { 0,1,3, "" }, - }, - /* #11 : s is a null pointer. No chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0201,0x0221,0x0000,0x0000 }, 5 }, - /*expect*/ { EILSEQ,1,(size_t)-1, "" }, - }, - /* #12 : ws is a null wc string, no chars should be stored in s. */ - { /*input.*/ { 1,1, { 0x0000 }, 5 }, - /*expect*/ { 0,1,0, "" }, - }, - /* #13 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0000 }, 5 }, - /*expect*/ { 0,1,0, "" }, - }, - { .is_last = 1 } - } - }, - { - { Twcstombs, TST_LOC_enUS }, - { - /* #01 : Any chars including a null char should not be stored in s. */ - { /*input.*/ { 1,1, { 0x00C4,0x0042,0x0043,0x0000 }, 0 }, - /*expect*/ { 0,1,0, "" }, - }, - /* #02 : Only one chars should be stored in s. No null termination. */ - { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 1 }, - /*expect*/ { 0,1,1, "A" }, - }, - /* #03 : Only two chars should be stored in s. No null termination. */ - { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 2 }, - /*expect*/ { 0,1,2, "AB" }, - }, - /* #04 : Only three chars should be stored in s. No null - termination. */ - { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 3 }, - /*expect*/ { 0,1,3, "ABC" }, - }, - /* #05 : Only three chars should be stored in s with a null - termination. */ - { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 4 }, - /*expect*/ { 0,1,3, "ABC" }, - }, - /* #06 : Only three chars should be stored in s with a null - termination. */ - { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 5 }, - /*expect*/ { 0,1,3, "ABC" }, - }, - /* #07 : Invalid mb sequence. No chars should be stored in s. */ - { /*input.*/ { 1,1, { 0x0201,0x0221,0x0000,0x0000 }, 2 }, - /*expect*/ { EILSEQ,1,(size_t)-1, "" }, - }, - /* #08 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0041,0x0042,0x0043,0x0000 }, 0 }, - /*expect*/ { 0,1,3, "" }, - }, - /* #09 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0041,0x0042,0x0043,0x0000 }, 1 }, - /*expect*/ { 0,1,3, "" }, - }, - /* #10 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0041,0x0042,0x0043,0x0000 }, 5 }, - /*expect*/ { 0,1,3, "" }, - }, - /* #11 : s is a null pointer. No chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0201,0x0221,0x0000,0x0000 }, 5 }, - /*expect*/ { EILSEQ,1,(size_t)-1, "" }, - }, - /* #12 : ws is a null wc string, no chars should be stored in s. */ - { /*input.*/ { 1,1, { 0x0000 }, 5, }, - /*expect*/ { 0,1,0, "" }, - }, - /* #13 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0000 }, 5 }, - /*expect*/ { 0,1,0, "" }, - }, - { .is_last = 1 } - } - }, -#if 0 - { - { Twcstombs, TST_LOC_eucJP }, - { - - /* #01 : Any chars including a null char should not be stored in s. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 0 }, - /*expect*/ { 0,1,0, "" }, - }, - /* #02 : Only one chars should be stored in s. No null termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 2 }, - /*expect*/ { 0,1,2, "\244\242" }, - }, - /* #03 : Only two chars should be stored in s. No null termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 4 }, - /*expect*/ { 0,1,4, "\244\242\244\244" }, - }, - /* #04 : Only three chars should be stored in s. No null - termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 6 }, - /*expect*/ { 0,1,6, "\244\242\244\244\216\263" }, - }, - /* #05 : Only three chars should be stored in s with a null - termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 7 }, - /*expect*/ { 0,1,6, "\244\242\244\244\216\263" }, - }, - /* #06 : Only three chars should be stored in s with a null - termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 8 }, - /*expect*/ { 0,1,6, "\244\242\244\244\216\263" }, - }, - /* #07 : Invalid mb sequence. No chars should be stored in s. */ - { /*input.*/ { 1,1, { 0x0201,0x0221,0x0000,0x0000 }, 2 }, - /*expect*/ { EILSEQ,1,-1, "" }, - }, - /* #08 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 0 }, - /*expect*/ { 0,1,6, "" }, - }, - /* #09 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 1 }, - /*expect*/ { 0,1,6, "" }, - }, - /* #10 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 8 }, - /*expect*/ { 0,1,6, "" }, - }, - /* #11 : s is a null pointer. No chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0201,0x0221,0x0000,0x0000 }, 5 }, - /*expect*/ { EILSEQ,1,(size_t)-1, "" }, - }, - /* #12 : ws is a null wc string, no chars should be stored in s. */ - { /*input.*/ { 1,1, { 0x0000 }, 5 }, - /*expect*/ { 0,1,0, "" }, - }, - /* #13 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0000 }, 5 }, - /*expect*/ { 0,1,0, "" }, - }, - { .is_last = 1 } - } - }, -#else - { - { Twcstombs, TST_LOC_ja_UTF8 }, - { - - /* #01 : Any chars including a null char should not be stored in s. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 0 }, - /*expect*/ { 0,1,0, "" }, - }, - /* #02 : Only one chars should be stored in s. No null termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 3 }, - /*expect*/ { 0,1,3, "\343\201\202" }, - }, - /* #03 : Only two chars should be stored in s. No null termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 6 }, - /*expect*/ { 0,1,6, "\343\201\202\343\201\204" }, - }, - /* #04 : Only three chars should be stored in s. No null - termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 9 }, - /*expect*/ { 0,1,9, "\343\201\202\343\201\204\357\275\263" }, - }, - /* #05 : Only three chars should be stored in s with a null - termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 10 }, - /*expect*/ { 0,1,9, "\343\201\202\343\201\204\357\275\263" }, - }, - /* #06 : Only three chars should be stored in s with a null - termination. */ - { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 11 }, - /*expect*/ { 0,1,9, "\343\201\202\343\201\204\357\275\263" }, - }, - /* #07 : Invalid mb sequence. No chars should be stored in s. */ - { /*input.*/ { 1,1, { 0x0201,0x0221,0x0000,0x0000 }, 2 }, - /*expect*/ { EILSEQ,1,-1, "" }, - }, - /* #08 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 0 }, - /*expect*/ { 0,1,9, "" }, - }, - /* #09 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 1 }, - /*expect*/ { 0,1,9, "" }, - }, - /* #10 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 8 }, - /*expect*/ { 0,1,9, "" }, - }, - /* #11 : s is a null pointer. No chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0201,0x0221,0x0000,0x0000 }, 5 }, - /*expect*/ { EILSEQ,1,(size_t)-1, "" }, - }, - /* #12 : ws is a null wc string, no chars should be stored in s. */ - { /*input.*/ { 1,1, { 0x0000 }, 5 }, - /*expect*/ { 0,1,0, "" }, - }, - /* #13 : s is a null pointer, no chars should be stored in s. */ - { /*input.*/ { 0,1, { 0x0000 }, 5 }, - /*expect*/ { 0,1,0, "" }, - }, - { .is_last = 1 } - } - }, -#endif - { - { Twcstombs, TST_LOC_end } - } -}; -- cgit v1.2.3