diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-10-28 16:45:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-10-28 16:45:27 +0000 |
commit | 22c915ac42b6890383da4b1b0b63f9a15408a01c (patch) | |
tree | ade1950b6d6b169cac65e8eaf0562235978fa40f /stdio-common/bug20.c | |
parent | 4c6b2202cbb6f2e22f4cc48298f64bc5a356f3f9 (diff) | |
download | glibc-22c915ac42b6890383da4b1b0b63f9a15408a01c.tar.gz glibc-22c915ac42b6890383da4b1b0b63f9a15408a01c.tar.xz glibc-22c915ac42b6890383da4b1b0b63f9a15408a01c.zip |
* stdio-common/Makefile (tests): Add bug20.
* stdio-common/bug20.c: New file.
Diffstat (limited to 'stdio-common/bug20.c')
-rw-r--r-- | stdio-common/bug20.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/stdio-common/bug20.c b/stdio-common/bug20.c new file mode 100644 index 0000000000..385f6ffbe1 --- /dev/null +++ b/stdio-common/bug20.c @@ -0,0 +1,32 @@ +/* BZ #5225 */ +#include <stdio.h> +#include <string.h> +#include <wchar.h> + +static int +do_test (void) +{ + wchar_t in[] = L"123,abc,321"; + /* This is the critical part for this test. format must be in + read-only memory. */ + static const wchar_t format[50] = L"%d,%[^,],%d"; + int out_d1, out_d2; + char out_s[50]; + printf ("in='%ls' format='%ls'\n", in, format); + if (swscanf (in, format, &out_d1, out_s, &out_d2) != 3) + { + puts ("swscanf did not return 3"); + return 1; + } + printf ("in='%ls' format='%ls'\n", in, format); + printf ("out_d1=%d out_s='%s' out_d2=%d\n", out_d1, out_s, out_d2); + if (out_d1 != 123 || strcmp (out_s, "abc") != 0 || out_d2 != 321) + { + puts ("swscanf did not return the correct values"); + return 1; + } + return 0; +} + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |