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
113
114
115
116
117
118
119
120
121
122
|
/*
* TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY
*
* FILE: dat_wcrtomb.c
*
* WCRTOMB: intwcrtomb (char *s, wchar_t wc, mbstate_t *ps);
*
*/
TST_WCRTOMB tst_wcrtomb_loc [] = {
{
{ Twcrtomb, TST_LOC_de },
{
/* #01 : normal case */
{ /*input.*/ { 1, 0x00FC, 0,0 },
/*expect*/ { 0, 1,1, "ü" },
},
/* #02 : normal case */
{ /*input.*/ { 1, 0x00D6, 0,0 },
/*expect*/ { 0, 1,1, "Ö" },
},
/* #03 : error case */
{ /*input.*/ { 1, 0xFFA1, 0,0 },
/*expect*/ { EILSEQ,1,-1, "" },
},
/* #04 : */
{ /*input.*/ { 0, 0x0041, 0,0 },
/*expect*/ { 0, 1,1, "" },
},
/* #05 : */
{ /*input.*/ { 0, 0x0092, 0,0 },
/*expect*/ { 0, 1,1, "" },
},
{ .is_last = 1 }
}
},
{
{ Twcrtomb, TST_LOC_enUS },
{
/* #01 : normal case */
{ /*input.*/ { 1, 0x0041, 0,0 },
/*expect*/ { 0, 1,1, "A" },
},
/* #02 : normal case */
{ /*input.*/ { 1, 0x0042, 0,0 },
/*expect*/ { 0, 1,1, "B" },
},
/* #03 : error case */
/* <WAIVER> x 2 */
{ /*input.*/ { 1, 0x0092, 0,0 }, /* assume ascii */
/*expect*/ { EILSEQ,1,-1, "" },
},
/* #04 : */
{ /*input.*/ { 0, 0x0041, 0,0 },
/*expect*/ { 0, 1,1, "" },
},
/* #05 : */
{ /*input.*/ { 0, 0x0092, 0,0 },
/*expect*/ { 0, 1,1, "" },
},
{ .is_last = 1 }
}
},
#if 0
{
{ Twcrtomb, TST_LOC_eucJP },
{
/* #01 : normal case */
{ /*input.*/ { 1, 0x3042, 0,0 },
/*expect*/ { 0, 1,2, "\244\242" },
},
/* #02 : normal case */
{ /*input.*/ { 1, 0x3044, 0,0 },
/*expect*/ { 0, 1,2, "\244\244" },
},
/* #03 : normal case */
{ /*input.*/ { 1, 0x008E, 0,0 },
/*expect*/ { EILSEQ, 1,-1, "" },
},
/* #04 : */
{ /*input.*/ { 0, 0x3042, 0,0 },
/*expect*/ { 0, 0,0, "" },
},
/* #05 : */
{ /*input.*/ { 0, 0x008E, 0,0 },
/*expect*/ { 0, 0,0, "" },
},
{ .is_last = 1 }
}
},
#else
{
{ Twcrtomb, TST_LOC_ja_UTF8 },
{
/* #01 : normal case */
{ /*input.*/ { 1, 0x3042, 0,0 },
/*expect*/ { 0, 1,3, "\343\201\202" },
},
/* #02 : normal case */
{ /*input.*/ { 1, 0x3044, 0,0 },
/*expect*/ { 0, 1,3, "\343\201\204" },
},
/* #03 : normal case */
{ /*input.*/ { 1, 0x008E, 0,0 },
/*expect*/ { EILSEQ, 1,-1, "" },
},
/* #04 : */
{ /*input.*/ { 0, 0x3042, 0,0 },
/*expect*/ { 0, 0,0, "" },
},
/* #05 : */
{ /*input.*/ { 0, 0x008E, 0,0 },
/*expect*/ { 0, 0,0, "" },
},
{ .is_last = 1 }
}
},
#endif
{
{ Twcrtomb, TST_LOC_end }
}
};
|