mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 13:20:06 +00:00
0e16ecfa1e
* locale/programs/ld-ctype.c (ctype_finish): Take all characters from the input charset into account when generating the hash table. (allocate_arrays): Correct setting default width. Not all empty slots in the table are filled, only those not covert explicitly by the locale description and in the charset. * stdio-common/vfscanf.c: Make sure to always return WEOF and EOF for wide character version. For %C handling, test correct pointer variable for NULL. * wcsmbs/wctob.c: Handle WEOF special. * wcsmbs/wcwidth.h: 0xff in width array means invalid character. * wctype/wctype.h: Protect gcc-isms with __extension__. Avoid always-true test to avoid warning.
81 lines
1.5 KiB
C
81 lines
1.5 KiB
C
/*
|
|
WCSPBRK: wchar_t *wcspbrk (const wchar_t *ws1, const wchar_t *ws2);
|
|
*/
|
|
|
|
#define TST_FUNCTION wcspbrk
|
|
|
|
#include "tsp_common.c"
|
|
#include "dat_wcspbrk.c"
|
|
|
|
int
|
|
tst_wcspbrk (FILE * fp, int debug_flg)
|
|
{
|
|
TST_DECL_VARS (wchar_t *);
|
|
wchar_t *ws1, *ws2;
|
|
int err;
|
|
wchar_t wc_ex;
|
|
|
|
TST_DO_TEST (wcspbrk)
|
|
{
|
|
TST_HEAD_LOCALE (wcspbrk, S_WCSPBRK);
|
|
TST_DO_REC (wcspbrk)
|
|
{
|
|
TST_GET_ERRET (wcspbrk);
|
|
ws1 = TST_INPUT (wcspbrk).ws1;
|
|
ws2 = TST_INPUT (wcspbrk).ws2;
|
|
|
|
ret = wcspbrk (ws1, ws2);
|
|
|
|
if (debug_flg)
|
|
{
|
|
fprintf (stdout, "wcspbrk() [ %s : %d ] ret = %s\n", locale,
|
|
rec + 1, (ret == NULL) ? "null" : "not null");
|
|
if (ret)
|
|
fprintf (stderr,
|
|
" ret[0] = 0x%lx : 0x%lx = ws2[0]\n",
|
|
ret[0], ws2[0]);
|
|
}
|
|
|
|
TST_IF_RETURN (S_WCSPBRK)
|
|
{
|
|
if (ws2[0] == 0)
|
|
{
|
|
if (ret == ws1)
|
|
{
|
|
Result (C_SUCCESS, S_WCSPBRK, CASE_3, MS_PASSED);
|
|
}
|
|
else
|
|
{
|
|
err_count++;
|
|
Result (C_FAILURE, S_WCSPBRK, CASE_3,
|
|
"return address is not same address as ws1");
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
wc_ex = TST_EXPECT (wcspbrk).wc;
|
|
|
|
if (debug_flg)
|
|
fprintf (stdout,
|
|
" *ret = 0x%lx <-> 0x%lx = wc_ex\n",
|
|
*ret, wc_ex);
|
|
|
|
if (*ret != wc_ex)
|
|
{
|
|
err++;
|
|
err_count++;
|
|
Result (C_FAILURE, S_WCSPBRK, CASE_4, "the pointed wc is "
|
|
"different from an expected wc");
|
|
}
|
|
else
|
|
{
|
|
Result (C_SUCCESS, S_WCSPBRK, CASE_4, MS_PASSED);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return err_count;
|
|
}
|