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_towlower.c | 47 ----------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 test/locale-mbwc/dat_towlower.c (limited to 'test/locale-mbwc/dat_towlower.c') diff --git a/test/locale-mbwc/dat_towlower.c b/test/locale-mbwc/dat_towlower.c deleted file mode 100644 index b6dd275fd..000000000 --- a/test/locale-mbwc/dat_towlower.c +++ /dev/null @@ -1,47 +0,0 @@ -/* - * TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY - * - * FILE: dat_towlower.c - * - * ISW*: int towlower (wint_t wc); - */ - - -#include "dat_tow-funcs.h" - - -TST_TOW_LOC (LOWER, lower) = { - - { TST_TOW_REC (de, lower) - { - { { WEOF }, { 0, 1, (wint_t)-1 } }, - { { 0x0080 }, { 0, 1, 0x0080 } }, - { { 0x00CC }, { 0, 1, 0x00EC } }, - { { 0x00EC }, { 0, 1, 0x00EC } }, - { .is_last = 1 } /* Last element. */ - } - }, - { TST_TOW_REC (enUS, lower) - { - { { WEOF }, { 0, 1, (wint_t)-1 } }, - { { 0x007F }, { 0, 1, 0x007F } }, - { { 0x0041 }, { 0, 1, 0x0061 } }, - { { 0x0061 }, { 0, 1, 0x0061 } }, - { .is_last = 1 } /* Last element. */ - } - }, -#if 0 - { TST_TOW_REC (eucJP, lower) -#else - { TST_TOW_REC (ja_UTF8, lower) -#endif - { - { { 0x007F }, { 0, 1, 0x007F } }, - { { 0x0080 }, { 0, 1, 0x0080 } }, - { { 0xFF21 }, { 0, 1, 0xFF41 } }, - { { 0xFF41 }, { 0, 1, 0xFF41 } }, - { .is_last = 1 } /* Last element. */ - } - }, - { TST_TOW_REC (end, lower) } -}; -- cgit v1.2.3