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

# Test Shell support: --add-comments option.

cat <<\EOF > xg-sh-6.sh
# a
_ "hello world" # b
EOF

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

cat <<EOF > xg-sh-6.ok
#. a
msgid "hello world"
msgstr ""
EOF

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

exit $result