diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-26 18:08:08 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-26 18:08:08 +0000 |
commit | 73f1b06797637163b8529f4c7fa4b02b90c0154c (patch) | |
tree | cbef003f233bfb415cb75316d3b276dbbe55e5e7 /libio | |
parent | b39d571990557cc5ab855794ff0d4d7876f4596b (diff) | |
download | glibc-73f1b06797637163b8529f4c7fa4b02b90c0154c.tar glibc-73f1b06797637163b8529f4c7fa4b02b90c0154c.tar.gz glibc-73f1b06797637163b8529f4c7fa4b02b90c0154c.tar.bz2 glibc-73f1b06797637163b8529f4c7fa4b02b90c0154c.zip |
Update.
2002-02-26 Ulrich Drepper <drepper@redhat.com>
* stdio-common/vfscanf.c (_IO_vfwscanf): Always use ungetc, never
ungetwc. It's a macro.
* libio/tst-swscanf.c (do_test): Adjust for now fixed wscanf
implementation.
Reported by Jason Merrill <jason@redhat.com>.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/tst-swscanf.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/libio/tst-swscanf.c b/libio/tst-swscanf.c index 86472de16e..05be4e6e71 100644 --- a/libio/tst-swscanf.c +++ b/libio/tst-swscanf.c @@ -26,18 +26,19 @@ static const struct const wchar_t *fmt; const wchar_t *wfmt; const wchar_t *arg; + int retval; const char *res; const wchar_t *wres; int only_C_locale; } tests[] = { - { L"%[abc]", L"%l[abc]", L"aabbccddaabb", "aabbcc", L"aabbcc", 0 }, - { L"%[^def]", L"%l[^def]", L"aabbccddaabb", "aabbcc", L"aabbcc", 0 }, - { L"%[^abc]", L"%l[^abc]", L"aabbccddaabb", "", L"", 0 }, - { L"%[a-c]", L"%l[a-c]", L"aabbccddaabb", "aabbcc", L"aabbcc", 1 }, - { L"%[^d-f]", L"%l[^d-f]", L"aabbccddaabb", "aabbcc", L"aabbcc", 1 }, - { L"%[^a-c]", L"%l[^a-c]", L"aabbccddaabb", "", L"", 1 }, - { L"%[^a-c]", L"%l[^a-c]", L"bbccddaabb", "", L"", 1 } + { L"%[abc]", L"%l[abc]", L"aabbccddaabb", 1 ,"aabbcc", L"aabbcc", 0 }, + { L"%[^def]", L"%l[^def]", L"aabbccddaabb", 1, "aabbcc", L"aabbcc", 0 }, + { L"%[^abc]", L"%l[^abc]", L"aabbccddaabb", 0, "", L"", 0 }, + { L"%[a-c]", L"%l[a-c]", L"aabbccddaabb", 1, "aabbcc", L"aabbcc", 1 }, + { L"%[^d-f]", L"%l[^d-f]", L"aabbccddaabb", 1, "aabbcc", L"aabbcc", 1 }, + { L"%[^a-c]", L"%l[^a-c]", L"aabbccddaabb", 0, "", L"", 1 }, + { L"%[^a-c]", L"%l[^a-c]", L"bbccddaabb", 0, "", L"", 1 } }; @@ -63,13 +64,13 @@ do_test (const char *loc) if (tests[n].only_C_locale && strcmp (loc, "C") != 0) continue; - if (swscanf (tests[n].arg, tests[n].fmt, buf) != 1) + if (swscanf (tests[n].arg, tests[n].fmt, buf) != tests[n].retval) { printf ("swscanf (\"%S\", \"%S\", ...) failed\n", tests[n].arg, tests[n].fmt); result = 1; } - else if (strcmp (buf, tests[n].res) != 0) + else if (tests[n].retval != 0 && strcmp (buf, tests[n].res) != 0) { printf ("swscanf (\"%S\", \"%S\", ...) return \"%s\", expected \"%s\"\n", tests[n].arg, tests[n].fmt, buf, tests[n].res); @@ -79,13 +80,13 @@ do_test (const char *loc) printf ("swscanf (\"%S\", \"%S\", ...) OK\n", tests[n].arg, tests[n].fmt); - if (swscanf (tests[n].arg, tests[n].wfmt, wbuf) != 1) + if (swscanf (tests[n].arg, tests[n].wfmt, wbuf) != tests[n].retval) { printf ("swscanf (\"%S\", \"%S\", ...) failed\n", tests[n].arg, tests[n].wfmt); result = 1; } - else if (wcscmp (wbuf, tests[n].wres) != 0) + else if (tests[n].retval != 0 && wcscmp (wbuf, tests[n].wres) != 0) { printf ("swscanf (\"%S\", \"%S\", ...) return \"%S\", expected \"%S\"\n", tests[n].arg, tests[n].wfmt, wbuf, tests[n].wres); |