File: format-c-1

package info (click to toggle)
gettext 0.23.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168,104 kB
  • sloc: ansic: 532,579; sh: 68,252; perl: 28,011; makefile: 9,068; lisp: 3,184; yacc: 1,055; java: 615; cs: 589; cpp: 397; objc: 343; sed: 79; tcl: 63; xml: 40; pascal: 11; awk: 7; php: 7
file content (253 lines) | stat: -rwxr-xr-x 6,851 bytes parent folder | download | duplicates (2)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test recognition of C format strings.

cat <<\EOF > f-c-1.data
# Valid: no argument
"abc%%"
# Valid: one character argument
"abc%c"
# Valid: one string argument
"abc%s"
# Valid: one integer argument
"abc%i"
# Valid: one integer argument
"abc%d"
# Valid: one integer argument
"abc%o"
# Valid: one integer argument
"abc%u"
# Valid: one integer argument
"abc%x"
# Valid: one integer argument
"abc%X"
# Valid: one integer argument
"abc%b"
# Valid: one floating-point argument
"abc%e"
# Valid: one floating-point argument
"abc%E"
# Valid: one floating-point argument
"abc%f"
# Valid: one floating-point argument
"abc%F"
# Valid: one floating-point argument
"abc%g"
# Valid: one floating-point argument
"abc%G"
# Valid: one floating-point argument
"abc%a"
# Valid: one floating-point argument
"abc%A"
# Valid: one pointer argument
"abc%p"
# Valid: one argument with flags
"abc%0#g"
# Valid: one argument with width
"abc%2g"
# Valid: one argument with width
"abc%*g"
# Valid: one argument with precision
"abc%.4g"
# Valid: one argument with precision
"abc%.*g"
# Valid: one argument with width and precision
"abc%14.4g"
# Valid: one argument with width and precision
"abc%14.*g"
# Valid: one argument with width and precision
"abc%*.4g"
# Valid: one argument with width and precision
"abc%*.*g"
# Valid: one argument with size specifier
"abc%hhi"
# Valid: one argument with size specifier
"abc%hi"
# Valid: one argument with size specifier
"abc%li"
# Valid: one argument with size specifier
"abc%lli"
# Valid: one argument with size specifier
"abc%Lg"
# Valid: one argument with size specifier
"abc%qi"
# Valid: one argument with size specifier
"abc%ji"
# Valid: one argument with size specifier
"abc%zi"
# Valid: one argument with size specifier
"abc%ti"
# Valid: one argument with size specifier
"abc%w8i"
# Valid: one argument with size specifier
"abc%w16i"
# Valid: one argument with size specifier
"abc%w32i"
# Valid: one argument with size specifier
"abc%w64i"
# Valid: one argument with size specifier
"abc%wf8i"
# Valid: one argument with size specifier
"abc%wf16i"
# Valid: one argument with size specifier
"abc%wf32i"
# Valid: one argument with size specifier
"abc%wf64i"
# Invalid: one argument with unsupported size specifier
"abc%w4i"
# Invalid: one argument with unsupported size specifier
"abc%wf4i"
# Invalid: one floating-point argument with integer size specifier
"abc%hhg"
# Invalid: one floating-point argument with integer size specifier
"abc%hg"
# Invalid: one floating-point argument with integer size specifier
"abc%lg"
# Valid: one floating-point argument with integer size specifier equivalent to 'L'
"abc%llg"
# Valid: one floating-point argument with integer size specifier equivalent to 'L'
"abc%qg"
# Invalid: one floating-point argument with integer size specifier
"abc%jg"
# Invalid: one floating-point argument with integer size specifier
"abc%zg"
# Invalid: one floating-point argument with integer size specifier
"abc%tg"
# Invalid: one floating-point argument with integer size specifier
"abc%w8g"
# Invalid: one floating-point argument with integer size specifier
"abc%w16g"
# Invalid: one floating-point argument with integer size specifier
"abc%w32g"
# Invalid: one floating-point argument with integer size specifier
"abc%w64g"
# Invalid: one floating-point argument with integer size specifier
"abc%wf8g"
# Invalid: one floating-point argument with integer size specifier
"abc%wf16g"
# Invalid: one floating-point argument with integer size specifier
"abc%wf32g"
# Invalid: one floating-point argument with integer size specifier
"abc%wf64g"
# Valid: one argument with size specifier
"abc%lc"
# Invalid: one character argument with integer size specifier
"abc%llc"
# Invalid: one character argument with integer size specifier
"abc%Lc"
# Invalid: one character argument with integer size specifier
"abc%qc"
# Valid: one argument with size specifier
"abc%ls"
# Invalid: one string argument with integer size specifier
"abc%hhs"
# Invalid: one string argument with integer size specifier
"abc%hs"
# Invalid: one string argument with integer size specifier
"abc%lls"
# Invalid: one string argument with integer size specifier
"abc%Ls"
# Invalid: one string argument with integer size specifier
"abc%qs"
# Invalid: one string argument with integer size specifier
"abc%js"
# Invalid: one string argument with integer size specifier
"abc%zs"
# Invalid: one string argument with integer size specifier
"abc%ts"
# Invalid: one string argument with integer size specifier
"abc%w8s"
# Invalid: one string argument with integer size specifier
"abc%w16s"
# Invalid: one string argument with integer size specifier
"abc%w32s"
# Invalid: one string argument with integer size specifier
"abc%w64s"
# Invalid: one string argument with integer size specifier
"abc%wf8s"
# Invalid: one string argument with integer size specifier
"abc%wf16s"
# Invalid: one string argument with integer size specifier
"abc%wf32s"
# Invalid: one string argument with integer size specifier
"abc%wf64s"
# Invalid: unterminated
"abc%"
# Invalid: unknown format specifier
"abc%y"
# Invalid: flags after width
"abc%*0g"
# Invalid: twice precision
"abc%.4.2g"
# Valid: three arguments
"abc%d%u%u"
# Valid: a numbered argument
"abc%1$d"
# Invalid: zero
"abc%0$d"
# Valid: two-digit numbered arguments
"abc%11$def%10$dgh%9$dij%8$dkl%7$dmn%6$dop%5$dqr%4$dst%3$duv%2$dwx%1$dyz"
# Invalid: unterminated number
"abc%1"
# Invalid: flags before number
"abc%+1$d"
# Valid: three arguments, two with same number, no conflict
"abc%1$4x,%2$c,%1$u"
# Invalid: argument with conflicting types
"abc%1$4x,%2$c,%1$s"
# Invalid: mixing of numbered and unnumbered arguments
"abc%d%2$x"
# Valid: numbered argument with constant precision
"abc%1$.9x"
# Invalid: mixing of numbered and unnumbered arguments
"abc%1$.*x"
# Invalid: missing non-final argument
"abc%2$x%3$s"
# Valid: permutation
"abc%2$ddef%1$d"
# Valid: multiple uses of same argument
"abc%2$xdef%1$pghi%2$x"
# Valid: one argument with width
"abc%2$#*1$g"
# Valid: one argument with width and precision
"abc%3$*2$.*1$g"
# Invalid: zero
"abc%2$*0$.*1$g"
EOF

: ${XGETTEXT=xgettext}
n=0
while read comment; do
  read string
  n=`expr $n + 1`
  cat <<EOF > f-c-1-$n.in
gettext(${string});
EOF
  ${XGETTEXT} -L C -o f-c-1-$n.po f-c-1-$n.in || Exit 1
  test -f f-c-1-$n.po || Exit 1
  fail=
  if echo "$comment" | grep 'Valid:' > /dev/null; then
    if grep c-format f-c-1-$n.po > /dev/null; then
      :
    else
      fail=yes
    fi
  else
    if grep c-format f-c-1-$n.po > /dev/null; then
      fail=yes
    else
      :
    fi
  fi
  if test -n "$fail"; then
    echo "Format string recognition error:" 1>&2
    cat f-c-1-$n.in 1>&2
    echo "Got:" 1>&2
    cat f-c-1-$n.po 1>&2
    Exit 1
  fi
  rm -f f-c-1-$n.in f-c-1-$n.po
done < f-c-1.data

Exit 0