diff options
author | Ulrich Drepper <drepper@gmail.com> | 2012-03-08 03:02:24 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2012-03-08 03:02:24 -0500 |
commit | aea5d7277a2ebd2f432bc3196e4a0e2afe8d5878 (patch) | |
tree | 5fe757070c71a5c7f577e09b6b276759cb06c396 /stdio-common/tst-fphex.c | |
parent | ca2ff9fc0492c42f5407a64dd009baa0df488887 (diff) | |
download | glibc-aea5d7277a2ebd2f432bc3196e4a0e2afe8d5878.tar glibc-aea5d7277a2ebd2f432bc3196e4a0e2afe8d5878.tar.gz glibc-aea5d7277a2ebd2f432bc3196e4a0e2afe8d5878.tar.bz2 glibc-aea5d7277a2ebd2f432bc3196e4a0e2afe8d5878.zip |
Clean up tst-fphex test
Diffstat (limited to 'stdio-common/tst-fphex.c')
-rw-r--r-- | stdio-common/tst-fphex.c | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/stdio-common/tst-fphex.c b/stdio-common/tst-fphex.c index 4465bfb81a..c2e8961d62 100644 --- a/stdio-common/tst-fphex.c +++ b/stdio-common/tst-fphex.c @@ -3,26 +3,22 @@ #include <stdio.h> #include <string.h> -#ifndef STR_LEN +#ifndef WIDE # define STR_LEN strlen -#endif -#ifndef STR_CMP # define STR_CMP strcmp -#endif -#ifndef SPRINT # define SPRINT snprintf -#endif -#ifndef CHAR_T # define CHAR_T char -#endif -#ifndef PRINT # define PRINT printf -#endif -#ifndef L_ # define L_(Str) Str -#endif -#ifndef L -# define L +# define S "%s" +#else +# define STR_LEN wcslen +# define SPRINT swprintf +# define STR_CMP wcscmp +# define CHAR_T wchar_t +# define PRINT wprintf +# define L_(Str) L##Str +# define S "%ls" #endif struct testcase @@ -61,8 +57,9 @@ do_test (void) int n = SPRINT (buf, sizeof buf / sizeof (buf[0]), t->fmt, t->value); if (n != STR_LEN (t->expect) || STR_CMP (buf, t->expect) != 0) { - PRINT (L_("%" L "s\tExpected \"%" L "s\" (%Zu)\n\tGot \"%" L - "s\" (%d, %Zu)\n"), t->fmt, t->expect, STR_LEN (t->expect), + PRINT (L_("" S "\tExpected \"" S "\" (%Zu)\n\tGot \"" + S "\" (%d, %Zu)\n"), + t->fmt, t->expect, STR_LEN (t->expect), buf, n, STR_LEN (buf)); result = 1; } |