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/string/tst-strxfrm.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/string/tst-strxfrm.c')
-rw-r--r-- | test/string/tst-strxfrm.c | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/test/string/tst-strxfrm.c b/test/string/tst-strxfrm.c deleted file mode 100644 index ff1b396be..000000000 --- a/test/string/tst-strxfrm.c +++ /dev/null @@ -1,80 +0,0 @@ -/* Based on a test case by Paul Eggert. */ -#include <features.h> -#ifdef __UCLIBC_HAS_XLOCALE__ -#include <locale.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - - -char const string[] = ""; - - -static int -test (const char *locale) -{ - size_t bufsize; - size_t r; - size_t l; - char *buf; - locale_t loc; - int result = 0; - - if (setlocale (LC_COLLATE, locale) == NULL) - { - printf ("cannot set locale \"%s\"\n", locale); - return 1; - } - bufsize = strxfrm (NULL, string, 0) + 1; - buf = malloc (bufsize); - if (buf == NULL) - { - printf ("cannot allocate %zd bytes\n", bufsize); - return 1; - } - r = strxfrm (buf, string, bufsize); - l = strlen (buf); - if (r != l) - { - printf ("locale \"%s\": strxfrm returned %zu, strlen returned %zu\n", - locale, r, l); - result = 1; - } - - loc = newlocale (1 << LC_ALL, locale, NULL); - - r = strxfrm_l (buf, string, bufsize, loc); - l = strlen (buf); - if (r != l) - { - printf ("locale \"%s\": strxfrm_l returned %zu, strlen returned %zu\n", - locale, r, l); - result = 1; - } - - freelocale (loc); - - free (buf); - - return result; -} - - -int -main (void) -{ - int result = 0; - - result |= test ("C"); - result |= test ("en_US.ISO-8859-1"); - result |= test ("de_DE.UTF-8"); - - return result; -} - -#else -int main(void) -{ - return 0; -} -#endif |