summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/xgettext-sh-3
blob: e6cadfe3de0e372d7688ea46cabfce63af4a1c20 (plain)
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
#!/bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test Shell support: backslashed double-quotes inside single-quotes
# and ANSI-C quoting.

cat <<\EOF > xg-sh-3.sh
echo `gettext 'abc\"def'`
echo `gettext $'\'\"\a\b\e\f\n\r\t\v\x61\x3a\x3A\075\\'`
EOF

: ${XGETTEXT=xgettext}
${XGETTEXT} --omit-header --no-location -d xg-sh-3.tmp xg-sh-3.sh || exit 1
LC_ALL=C tr -d '\r' < xg-sh-3.tmp.po > xg-sh-3.po || exit 1

cat <<\EOF > xg-sh-3.ok
msgid "abc\\\"def"
msgstr ""

msgid ""
"'\"\a\b\f\n"
"\r\t\va::=\\"
msgstr ""
EOF

: ${DIFF=diff}
${DIFF} xg-sh-3.ok xg-sh-3.po
result=$?

exit $result