diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-18 08:29:24 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-18 08:29:24 +0100 |
commit | 21ec3389276c2bc407444c37b37c3edd223aed32 (patch) | |
tree | 8561fc958593d26f22bc4061c32894c79c916963 /test/iconv/tst-iconv1.c | |
parent | 7e73c627630a8b902e8822c8d1ee40ae3a44f563 (diff) |
add iconv tests from glibc, enable one for uClibc-ng new libiconv, skip the other
Diffstat (limited to 'test/iconv/tst-iconv1.c')
-rw-r--r-- | test/iconv/tst-iconv1.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/test/iconv/tst-iconv1.c b/test/iconv/tst-iconv1.c new file mode 100644 index 0000000..67b39ff --- /dev/null +++ b/test/iconv/tst-iconv1.c @@ -0,0 +1,54 @@ +/* Test case by yaoz@nih.gov. */ + +#include <stddef.h> +#include <stdio.h> +#include <string.h> + +#if defined(__GLIBC__) && !defined(__UCLIBC__) +#include <iconv.h> +#endif + +static int +do_test (void) +{ +#if defined(__GLIBC__) && !defined(__UCLIBC__) + char utf8[5]; + wchar_t ucs4[5]; + iconv_t cd; + char *inbuf; + char *outbuf; + size_t inbytes; + size_t outbytes; + size_t n; + + strcpy (utf8, "abcd"); + + /* From UTF8 to UCS4. */ + cd = iconv_open ("UCS4", "UTF8"); + if (cd == (iconv_t) -1) + { + perror ("iconv_open"); + return 1; + } + + inbuf = utf8; + inbytes = 4; + outbuf = (char *) ucs4; + outbytes = 4 * sizeof (wchar_t); /* "Argument list too long" error. */ + n = iconv (cd, &inbuf, &inbytes, &outbuf, &outbytes); + if (n == (size_t) -1) + { + printf ("iconv: %m\n"); + iconv_close (cd); + return 1; + } + iconv_close (cd); + + return 0; +#else + return 23; +#endif +} + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |