mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
Test files for mbrlen.c.
This commit is contained in:
parent
2803faf059
commit
8c8ade2980
158
localedata/tests-mbwc/dat_mbrlen.c
Normal file
158
localedata/tests-mbwc/dat_mbrlen.c
Normal file
@ -0,0 +1,158 @@
|
||||
/*
|
||||
* TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY
|
||||
*
|
||||
* FILE: dat_mbrlen.c
|
||||
*
|
||||
* MBRLEN: size_t mbrlen (const char *s, size_t n, mbstate_t *ps);
|
||||
*/
|
||||
|
||||
/*
|
||||
* NOTE:
|
||||
* (1) A mbstate object is initialized for
|
||||
* every new data record by the test program.
|
||||
*
|
||||
* (2) USE_MBCURMAX is defined as a value of 99.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
TST_MBRLEN tst_mbrlen_loc [] = {
|
||||
{
|
||||
{ Tmbrlen, TST_LOC_de },
|
||||
{
|
||||
{ /*----------------- #01 -----------------*/
|
||||
{
|
||||
{
|
||||
{ 1, "", 0, 0, 0 },
|
||||
{ 1, "", 1, 0, 0 },
|
||||
{ 1, "\300", USE_MBCURMAX, 0, 0 },
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
{ 1, 0, 1, 0, },
|
||||
{ 1, 0, 1, 0, },
|
||||
{ 1, 0, 1, 1, },
|
||||
}
|
||||
}
|
||||
},
|
||||
{ /*----------------- #02 -----------------*/
|
||||
{
|
||||
{
|
||||
{ 1, "\300\001", 0, 0, 0 },
|
||||
{ 1, "\300\001", 1, 0, 0 },
|
||||
{ 1, "\317\001", USE_MBCURMAX, 0, 0 },
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
{ 1, 0, 1, 0, },
|
||||
{ 1, 0, 1, 1, },
|
||||
{ 1, 0, 1, 1, },
|
||||
}
|
||||
}
|
||||
},
|
||||
{ is_last: 1 }
|
||||
}
|
||||
},
|
||||
{
|
||||
{ Tmbrlen, TST_LOC_enUS },
|
||||
{
|
||||
{ /*----------------- #01 -----------------*/
|
||||
{
|
||||
{
|
||||
{ 1, "A", 0, 0, 0 },
|
||||
{ 1, "A", 1, 0, 0 },
|
||||
{ 1, "A", USE_MBCURMAX, 0, 0 },
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
{ 1, 0, 1, 0, },
|
||||
{ 1, 0, 1, 1, },
|
||||
{ 1, 0, 1, 1, },
|
||||
}
|
||||
}
|
||||
},
|
||||
{ /*----------------- #02 -----------------*/
|
||||
{
|
||||
{
|
||||
{ 1, "\317\001", 0, 1, 0 },
|
||||
{ 1, "\317\001", 1, 1, 0 },
|
||||
{ 1, "\317\001", USE_MBCURMAX, 1, 0 },
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
{ 1, 0, 1, 0, },
|
||||
/* <WAIVER_? x 2> assuming ascii */
|
||||
{ 1, EILSEQ, 1, -1, },
|
||||
/* <WAIVER_? x 2> assuming ascii */
|
||||
{ 1, EILSEQ, 1, -1, },
|
||||
}
|
||||
}
|
||||
},
|
||||
{ is_last: 1 }
|
||||
}
|
||||
},
|
||||
{
|
||||
{ Tmbrlen, TST_LOC_eucJP },
|
||||
{
|
||||
{ /*----------------- #01 -----------------*/
|
||||
{
|
||||
{
|
||||
{ 1, "\317\302", 1, 0, 0 },
|
||||
{ 0, "", 0, 0, 0 },
|
||||
{ 1, "\317\302", USE_MBCURMAX, 0, 0 },
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
{ 1, 0, 1, -2, },
|
||||
/* <WAIVER_?> returned -2 */
|
||||
{ 1, 0, 1, 0, },
|
||||
/* <WAIVER_?> returned 1 */
|
||||
{ 1, 0, 1, 2, },
|
||||
}
|
||||
}
|
||||
},
|
||||
{ /*----------------- #02 -----------------*/
|
||||
{
|
||||
{
|
||||
{ 1, "\317", 1, 1, 0 },
|
||||
{ 1, "\302", 1, 1, 0 },
|
||||
{ 1, "\317\302", USE_MBCURMAX, 0, 0 },
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
{ 1, 0, 1, -2, },
|
||||
/* <WAIVER_?> returned -2 */
|
||||
{ 1, 0, 1, +2, },
|
||||
{ 1, 0, 1, 2, },
|
||||
}
|
||||
}
|
||||
},
|
||||
{ /*----------------- #03 -----------------*/
|
||||
{
|
||||
{
|
||||
{ 1, "\216\217", 0, 0, 0 },
|
||||
{ 1, "\216\217", 1, 0, 0 },
|
||||
{ 1, "\216\217", USE_MBCURMAX, 0, 0 },
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
{ 1, 0, 1, 0, },
|
||||
{ 1, 0, 1, -2, },
|
||||
{ 1, EILSEQ, 1, -1, },
|
||||
}
|
||||
}
|
||||
},
|
||||
{ is_last: 1 }
|
||||
}
|
||||
},
|
||||
{
|
||||
{ Tmbrlen, TST_LOC_end }
|
||||
}
|
||||
};
|
81
localedata/tests-mbwc/tst_mbrlen.c
Normal file
81
localedata/tests-mbwc/tst_mbrlen.c
Normal file
@ -0,0 +1,81 @@
|
||||
/*
|
||||
MBRLEN: size_t mbrlen (char *s, size_t n, mbstate_t *ps)
|
||||
*/
|
||||
|
||||
#define TST_FUNCTION mbrlen
|
||||
|
||||
#include "tsp_common.c"
|
||||
#include "dat_mbrlen.c"
|
||||
|
||||
|
||||
int
|
||||
tst_mbrlen (FILE * fp, int debug_flg)
|
||||
{
|
||||
TST_DECL_VARS (size_t);
|
||||
char s_flg;
|
||||
const char *s_in;
|
||||
size_t n;
|
||||
char t_flg;
|
||||
char t_ini;
|
||||
static mbstate_t s = { 0 };
|
||||
mbstate_t *ps;
|
||||
|
||||
TST_DO_TEST (mbrlen)
|
||||
{
|
||||
TST_HEAD_LOCALE (mbrlen, S_MBRLEN);
|
||||
TST_DO_REC (mbrlen)
|
||||
{
|
||||
if (mbrlen (NULL, 0, &s) != 0)
|
||||
{
|
||||
err_count++;
|
||||
Result (C_FAILURE, S_MBRLEN, CASE_3,
|
||||
"Initialization (external mbstate object) failed "
|
||||
"- skipped this test case.");
|
||||
continue;
|
||||
}
|
||||
|
||||
TST_DO_SEQ (MBRLEN_SEQNUM)
|
||||
{
|
||||
TST_GET_ERRET_SEQ (mbrlen);
|
||||
s_flg = TST_INPUT_SEQ (mbrlen).s_flg;
|
||||
s_in = TST_INPUT_SEQ (mbrlen).s;
|
||||
n = TST_INPUT_SEQ (mbrlen).n;
|
||||
t_flg = TST_INPUT_SEQ (mbrlen).t_flg;
|
||||
t_ini = TST_INPUT_SEQ (mbrlen).t_init;
|
||||
if (s_flg == 0)
|
||||
{
|
||||
s_in = NULL;
|
||||
}
|
||||
|
||||
if (n == USE_MBCURMAX) /* rewrite tst_mblen() like this */
|
||||
{
|
||||
n = MB_CUR_MAX;
|
||||
}
|
||||
|
||||
ps = (t_flg == 0) ? NULL : &s;
|
||||
#if 0
|
||||
if (t_ini != 0)
|
||||
{
|
||||
memset (&s, 0, sizeof (s));
|
||||
}
|
||||
#endif
|
||||
TST_CLEAR_ERRNO;
|
||||
ret = mbrlen (s_in, n, ps);
|
||||
TST_SAVE_ERRNO;
|
||||
|
||||
if (debug_flg)
|
||||
{
|
||||
fprintf (stdout, "mbrlen() [ %s : %d : %d ] ret = %d\n",
|
||||
locale, rec + 1, seq_num + 1, ret);
|
||||
fprintf (stdout, " errno = %d\n", errno_save);
|
||||
}
|
||||
|
||||
TST_IF_RETURN (S_MBRLEN)
|
||||
{
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return err_count;
|
||||
}
|
Loading…
Reference in New Issue
Block a user