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
|
/*
WCTOMB: int wctomb (char *s, wchar_t wc)
*/
#define TST_FUNCTION wctomb
#include "tsp_common.c"
#include "dat_wctomb.c"
int
tst_wctomb (FILE * fp, int debug_flg)
{
TST_DECL_VARS (int);
wchar_t wc;
char s[MBSSIZE], *s_in, *s_ex;
int err, i;
TST_DO_TEST (wctomb)
{
TST_HEAD_LOCALE (wctomb, S_WCTOMB);
TST_DO_REC (wctomb)
{
TST_GET_ERRET (wctomb);
wc = TST_INPUT (wctomb).wc;
s_in = ((TST_INPUT (wctomb).s_flg) == 0) ? (char *) NULL : s;
ret = wctomb (s_in, wc);
if (debug_flg)
{
fprintf (stdout, "wctomb() [ %s : %d ] ret = %d\n", locale,
rec + 1, ret);
}
TST_IF_RETURN (S_WCTOMB)
{
if (s_in == NULL) /* state dependency */
{
if (ret_exp == +1) /* state-dependent */
{
if (ret != 0)
{
/* Non-zero means state-dependent encoding. */
Result (C_SUCCESS, S_WCTOMB, CASE_3, MS_PASSED);
}
else
{
err_count++;
Result (C_FAILURE, S_WCTOMB, CASE_3,
"should be state-dependent encoding, "
"but a return value shows it is "
"state-independent");
}
}
if (ret_exp == 0) /* state-independent */
{
if (ret == 0)
{
/* Non-zero means state-dependent encoding. */
Result (C_SUCCESS, S_WCTOMB, CASE_3, MS_PASSED);
}
else
{
err_count++;
Result (C_FAILURE, S_WCTOMB, CASE_3,
"should be state-independent encoding, "
"but a return value shows it is state-dependent");
}
}
}
}
s_ex = TST_EXPECT (wctomb).s;
if (s_in)
{
for (i = 0, err = 0; *(s_ex + i) != 0 && i < MBSSIZE; i++)
{
if (s_in[i] != s_ex[i])
{
err++;
err_count++;
Result (C_FAILURE, S_WCTOMB, CASE_4,
"copied string is different from an"
" expected string");
break;
}
}
if (!err)
{
Result (C_SUCCESS, S_WCTOMB, CASE_4, MS_PASSED);
}
}
}
}
return err_count;
}
|