3 # Test checking of C format strings.
6 trap 'rm -fr $tmpfiles' 1 2 3 15
8 tmpfiles
="$tmpfiles f-c-2.data"
9 cat <<\EOF
> f-c-2.data
10 # Valid: %% doesn't count
13 # Invalid: invalid msgstr
16 # Valid: same arguments
19 # Valid: same arguments, with different widths
22 # Valid: same arguments but in numbered syntax
27 msgstr
"xyz%3$c%2$g%1$s"
28 # Invalid: too few arguments
29 msgid
"abc%2$udef%1$s"
31 # Invalid: too few arguments
34 # Invalid: too many arguments
37 # Valid: same numbered arguments, with different widths
39 msgstr
"xyz%2$4s%1$5s"
40 # Invalid: missing argument
41 msgid
"abc%2$sdef%1$u"
43 # Invalid: missing argument
44 msgid
"abc%1$sdef%2$u"
46 # Invalid: added argument
48 msgstr
"xyz%1$uvw%2$c"
49 # Valid: type compatibility
52 # Valid: type compatibility
55 # Valid: type compatibility
58 # Valid: type compatibility
61 # Valid: type compatibility
64 # Valid: type compatibility
67 # Valid: type compatibility
70 # Valid: type compatibility
73 # Valid: type compatibility
76 # Valid: type compatibility
79 # Valid: type compatibility
82 # Invalid: type incompatibility
85 # Invalid: type incompatibility
88 # Invalid: type incompatibility
91 # Invalid: type incompatibility
94 # Invalid: type incompatibility
97 # Invalid: type incompatibility
100 # Invalid: type incompatibility
103 # Invalid: type incompatibility
106 # Invalid: type incompatibility
109 # Invalid: type incompatibility
112 # Invalid: type incompatibility
115 # Invalid: type incompatibility
118 # Invalid: type incompatibility
121 # Invalid: type incompatibility
124 # Invalid: type incompatibility
127 # Invalid: type incompatibility
130 # Invalid: type incompatibility
133 # Invalid: type incompatibility
136 # Invalid: type incompatibility
139 # Invalid: type incompatibility
142 # Invalid: type incompatibility
145 # Invalid: type incompatibility for width
152 while read comment
; do
156 tmpfiles
="$tmpfiles f-c-2-$n.po f-c-2-$n.mo"
157 cat <<EOF > f-c-2-$n.po
163 if echo "$comment" |
grep 'Valid:' > /dev
/null
; then
164 if ${MSGFMT} --check-format -o f-c-2-
$n.mo f-c-2-
$n.po
; then
170 ${MSGFMT} --check-format -o f-c-2-
$n.mo f-c-2-
$n.po
2> /dev
/null
177 if test -n "$fail"; then
178 echo "Format string checking error:" 1>&2
182 rm -f f-c-2-
$n.po f-c-2-
$n.mo