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/show-ucs-data.c | 62 --------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 test/locale/show-ucs-data.c (limited to 'test/locale/show-ucs-data.c') diff --git a/test/locale/show-ucs-data.c b/test/locale/show-ucs-data.c deleted file mode 100644 index 9992ece42..000000000 --- a/test/locale/show-ucs-data.c +++ /dev/null @@ -1,62 +0,0 @@ -#include -#include -#include -#include - -int -main (int argc, char *argv[]) -{ - int n; - char *line = NULL; - size_t len = 0; - - for (n = 1; n < argc; ++n) - { - FILE *fp = fopen (argv[n], "r"); - if (fp == NULL) - continue; - - while (! feof (fp)) - { - ssize_t cnt = getline (&line, &len, fp); - char *runp; - if (cnt <= 0) - break; - - runp = line; - do - { - if (runp[0] == '<' && runp[1] == 'U' && isxdigit (runp[2]) - && isxdigit (runp[3]) && isxdigit (runp[4]) - && isxdigit (runp[5]) && runp[6] == '>') - { - unsigned int val = strtoul (runp + 2, NULL, 16); - - //putchar ('<'); - if (val < 128) - putchar (val); - else if (val < 0x800) - { - putchar (0xc0 | (val >> 6)); - putchar (0x80 | (val & 0x3f)); - } - else - { - putchar (0xe0 | (val >> 12)); - putchar (0x80 | ((val >> 6) & 0x3f)); - putchar (0x80 | (val & 0x3f)); - } - //putchar ('>'); - runp += 7; - } - else - putchar (*runp++); - } - while (runp < &line[cnt]); - } - - fclose (fp); - } - - return 0; -} -- cgit v1.2.3