1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/*
* TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY
*
* FILE: dat_wcscat.c
*
* WCSCAT: wchar_t *wcscat (wchar_t *ws1, wchar_t *ws2)
*/
/* NOTE:
Since this is not a locale sensitive function,
it doesn't make sense to test the function on some
locales. Better make different test cases for each locale ...
(Also some wc* functions are not locale sensitive.)
*/
TST_WCSCAT tst_wcscat_loc [] = {
{
{Twcscat, TST_LOC_de},
{
/* 1 */
{{{ 0x00C1,0x00C2,0x0000 },
{ 0x00C3,0x00C4,0x0000 }, },
{ 0, 0, 0,
{ 0x00C1,0x00C2,0x00C3,0x00C4,0x0000 } },
},
/* 2 */
{{{ 0x0001,0x0002,0x0000 },
{ 0x0003,0x0004,0x0000 }, },
{ 0, 0, 0,
{ 0x0001,0x0002,0x0003,0x0004,0x0000 } },
},
/* 3 */
{{{ 0x0000 },
{ 0x00C3,0x00C4,0x0000 }, },
{ 0, 0, 0,
{ 0x00C3,0x00C4,0x0000 } },
},
/* 4 */
{{{ 0x0001,0xFFFF,0x0000 },
{ 0x0080,0x0090,0x0000 }, },
{ 0, 0, 0,
{ 0x0001,0xFFFF,0x0080,0x0090,0x0000 } },
},
{.is_last = 1}
}
},
{
{Twcscat, TST_LOC_enUS},
{
/* 1 */
{{{ 0x0041,0x0042,0x0000 },
{ 0x0043,0x0044,0x0000 }, },
{ 0, 0, 0,
{ 0x0041,0x0042,0x0043,0x0044,0x0000 } },
},
/* 2 */
{{{ 0x0001,0x0002,0x0000 },
{ 0x0003,0x0004,0x0000 }, },
{ 0, 0, 0,
{ 0x0001,0x0002,0x0003,0x0004,0x0000 } },
},
/* 3 */
{{{ 0x0000 },
{ 0x0043,0x0044,0x0000 }, },
{ 0, 0, 0,
{ 0x0043,0x0044,0x0000 } },
},
/* 4 */
{{{ 0x0001,0xFFFF,0x0000 },
{ 0x0080,0x0090,0x0000 }, },
{ 0, 0, 0,
{ 0x0001,0xFFFF,0x0080,0x0090,0x0000 } },
},
{.is_last = 1}
}
},
{
{Twcscat, TST_LOC_eucJP},
{
/* 1 */
{{{ 0x30A2,0x74E0,0x0000 },
{ 0xFF71,0x0041,0x0000 }, },
{ 0, 0, 0,
{ 0x30A2,0x74E0,0xFF71,0x0041,0x0000 } },
},
/* 2 */
{{{ 0x0001,0x0002,0x0000 },
{ 0x0003,0x0004,0x0000 }, },
{ 0, 0, 0,
{ 0x0001,0x0002,0x0003,0x0004,0x0000 } },
},
/* 3 */
{{{ 0x30A2,0xFF71,0x0000 },
{ 0x0000 }, },
{ 0, 0, 0,
{ 0x30A2,0xFF71,0x0000 } },
},
/* 4 */
{{{ 0x0001,0xFFFF,0x0000 },
{ 0x0080,0x0090,0x0000 }, },
{ 0, 0, 0,
{ 0x0001,0xFFFF,0x0080,0x0090,0x0000 } },
},
{.is_last = 1}
}
},
{
{Twcscat, TST_LOC_end}
}
};
|