mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 10:30:20 +00:00
f1f1b6b95a
* wcsmbs/mbrtowc.c: Set flush to 1 for conversion function calls depending on whether the input string is empty or not. * wcsmbs/mbrtowc.c: Calling function without input means clearing the given state and not avoiding this by modifying a local object. * wcsmbs/wcrtomb.c: Likewise. * iconv/skeleton.c: If no EMIT_SHIFT_TO_INIT is defined clear state object since some incomplete characters might be in there.
166 lines
3.1 KiB
C
166 lines
3.1 KiB
C
/*
|
|
* 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, },
|
|
{ 1, EILSEQ, 1, -1, },
|
|
{ 1, EILSEQ, 1, -1, },
|
|
}
|
|
}
|
|
},
|
|
{ is_last: 1 }
|
|
}
|
|
},
|
|
{
|
|
{ Tmbrlen, TST_LOC_eucJP },
|
|
{
|
|
{ /*----------------- #01 -----------------*/
|
|
{
|
|
{
|
|
{ 1, "\317\302", 1, 0, 0 },
|
|
#ifdef SHOJI_IS_RIGHT
|
|
{ 0, "", 0, 0, 0 },
|
|
#else
|
|
/* XXX This test depends on the internal state being empty.
|
|
XXX Therefore we must explicitly clean it. */
|
|
{ 0, "", 0, 0, 1 },
|
|
#endif
|
|
{ 1, "\317\302", USE_MBCURMAX, 0, 0 },
|
|
}
|
|
},
|
|
{
|
|
{
|
|
{ 1, 0, 1, -2, },
|
|
{ 1, 0, 1, 0, },
|
|
{ 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, },
|
|
#ifdef SHOJI_IS_RIGHT
|
|
{ 1, 0, 1, +2, },
|
|
#else
|
|
/* XXX ISO C explicitly says that the return value does not
|
|
XXX reflect the bytes contained in the state. */
|
|
{ 1, 0, 1, +1, },
|
|
#endif
|
|
{ 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 }
|
|
}
|
|
};
|