diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-11-26 02:22:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-11-26 02:22:06 +0000 |
commit | 9b1a4ec37109f437aa8ca4334a6b2d31bdfb8cd4 (patch) | |
tree | f14430fffb47d37ae7c0f317a3bb104c1d1a1c8b /iconvdata/tst-iconv4.c | |
parent | 12f492c0a4c051055dea4155d54e51ac1842e5dc (diff) | |
download | glibc-9b1a4ec37109f437aa8ca4334a6b2d31bdfb8cd4.tar.gz glibc-9b1a4ec37109f437aa8ca4334a6b2d31bdfb8cd4.tar.xz glibc-9b1a4ec37109f437aa8ca4334a6b2d31bdfb8cd4.zip |
Update.
2002-11-25 Ulrich Drepper <drepper@redhat.com> * iconv/Makefile (tests): Remove tst-iconv4.c * iconv/tst-iconv4.c: Moved to... * iconvdata/tst-iconv4.c: ...here. New file. * iconvdata/Makefile (tests): Add tst-iconv4. Add dependencies.
Diffstat (limited to 'iconvdata/tst-iconv4.c')
-rw-r--r-- | iconvdata/tst-iconv4.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/iconvdata/tst-iconv4.c b/iconvdata/tst-iconv4.c new file mode 100644 index 0000000000..e099ca8715 --- /dev/null +++ b/iconvdata/tst-iconv4.c @@ -0,0 +1,44 @@ +#include <errno.h> +#include <iconv.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + + +static int +do_test (void) +{ + iconv_t cd = iconv_open ("ISO-8859-1", "UNICODE"); + if (cd == (iconv_t) -1) + { + printf ("iconv_open failed: %m\n"); + exit (EXIT_FAILURE); + } + + char instr[] = "a"; + char *inptr = instr; + size_t inlen = strlen (instr); + char buf[200]; + char *outptr = buf; + size_t outlen = sizeof (outptr); + + errno = 0; + size_t n = iconv (cd, &inptr, &inlen, &outptr, &outlen); + if (n != (size_t) -1) + { + printf ("n (= %zu) != (size_t) -1\n", n); + exit (EXIT_FAILURE); + } + if (errno != EINVAL) + { + printf ("errno = %m, not EINVAL\n"); + exit (EXIT_FAILURE); + } + + iconv_close (cd); + + return 0; +} + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |