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_strxfrm.c | 147 ----------------------------------------- 1 file changed, 147 deletions(-) delete mode 100644 test/locale-mbwc/dat_strxfrm.c (limited to 'test/locale-mbwc/dat_strxfrm.c') diff --git a/test/locale-mbwc/dat_strxfrm.c b/test/locale-mbwc/dat_strxfrm.c deleted file mode 100644 index 0c672d3d7..000000000 --- a/test/locale-mbwc/dat_strxfrm.c +++ /dev/null @@ -1,147 +0,0 @@ -/* - * TEST SUITE FOR MB/WC FUNCTIONS IN CLIBRARY - * - * FILE: dat_strxfrm.c - * - * STRXFRM: size_t strxfrm (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 strcoll(). - * If you got errors, check both test results. - * - * The buffer size should be enough to contain a string including a - * null char. Returns the number of bytes of the string (NOT - * including a null char). - */ - - - -TST_STRXFRM tst_strxfrm_loc [] = { - { - { Tstrxfrm, TST_LOC_de }, - { - { /*inp*/ { "\xf6\xc4\xe4\xfc", "\xf6\xc4\xe4\xfc", 17, 17 }, /* #01 */ - /*exp*/ { 0,0,0, }, - }, - { /*inp*/ { "aA", "Aa", 10, 10 }, /* #02 */ - /*exp*/ { 0,0,0 , }, - }, - { /*inp*/ { "Aa", "aA", 10, 10 }, /* #03 */ - /*exp*/ { 0,0,0, }, - }, - { /*inp*/ { "abc", "", 13, 13 }, /* #04 */ - /*exp*/ { 0,0,0, }, - }, - { /*inp*/ { "a", "B", 7, 7 }, /* #05 */ - /*exp*/ { 0,0,0, }, - }, - { /*inp*/ { "B", "a", 7, 7 }, /* #06 */ - /*exp*/ { 0,0,0, }, - }, - { - /* hiragana == latin1 */ - /*inp*/ { "abc", "\244\241\244\242", 13, 9 }, /* #07 */ - /*exp*/ { 0,0,0, }, - }, - { .is_last = 1 } - } - }, - { - { Tstrxfrm, TST_LOC_enUS }, - { - { /*inp*/ { "abcd", "abcd", 17, 17 }, /* #01 */ - /*exp*/ { 0,0,0, }, - }, - { /*inp*/ { "aA", "Aa", 10, 10 }, /* #02 */ - /*exp*/ { 0,0,0 , }, - }, - { /*inp*/ { "Aa", "aA", 10, 10 }, /* #03 */ - /*exp*/ { 0,0,0, }, - }, - { /*inp*/ { "abc", "", 13, 13 }, /* #04 */ - /*exp*/ { 0,0,0, }, - }, - { /*inp*/ { "a", "B", 7, 7 }, /* #05 */ - /*exp*/ { 0,0,0, }, - }, - { /*inp*/ { "B", "a", 7, 7 }, /* #06 */ - /*exp*/ { 0,0,0, }, - }, -#ifdef NO_WAIVER - { - /* */ - /*inp*/ { "abc", "\244\241\244\242", 13, 9 }, /* #07 */ - /*exp*/ { EINVAL,0,0, }, - }, -#endif - { .is_last = 1 } - } - }, -#if 0 - { - { Tstrxfrm, TST_LOC_eucJP }, /* ??? */ - { - { - /* #01 */ - /*inp*/ { "\244\242\244\241", "\244\241\244\242", 5, 5 }, - /*exp*/ { 0,0,0, }, - }, - { - /* #02 */ - /*inp*/ { "\244\241\244\242", "\244\242\244\241", 5, 5 }, - /*exp*/ { 0,0,0, }, - }, - { - /* #03 */ - /*inp*/ { "\244\242\216\261", "\216\261\244\242", 5, 5 }, - /*exp*/ { 0,0,0, }, - }, -#ifdef NO_WAIVER - { - /*inp*/ { "AAA", "\216\217", 5, 5 }, /* #04 */ /* */ - /*exp*/ { EINVAL,0,0, }, - }, -#endif - { .is_last = 1 } - } - }, -#else - { - { Tstrxfrm, TST_LOC_ja_UTF8 }, /* ??? */ - { - { - /* #01 */ - /*inp*/ { "\343\201\202\343\201\201", "\343\201\201\343\201\202", 7, 7 }, - /*exp*/ { 0,0,0, }, - }, - { - /* #02 */ - /*inp*/ { "\343\201\201\343\201\202", "\343\201\202\343\201\201", 7, 7 }, - /*exp*/ { 0,0,0, }, - }, - { - /* #03 */ - /*inp*/ { "\343\201\202\357\275\261", "\357\275\261343\201\202", 7, 7 }, - /*exp*/ { 0,0,0, }, - }, -#ifdef NO_WAIVER - { - /*inp*/ { "AAA", "\340\277\220", 5, 5 }, /* #04 */ /* */ - /*exp*/ { EINVAL,0,0, }, - }, -#endif - { .is_last = 1 } - } - }, -#endif - { - { Tstrxfrm, TST_LOC_end } - } -}; -- cgit v1.2.3