Files
gettext/source/gettext-tools/tests/xgettext-python-4
2014-02-13 05:17:49 -08:00

43 lines
722 B
Bash

#!/bin/sh
# Test Python support: --add-comments option.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles xg-py-4.py"
cat <<\EOF > xg-py-4.py
# a
string = # b
# c
_( # d
"hello " "world" # e
);
EOF
tmpfiles="$tmpfiles xg-py-4.tmp.po xg-py-4.po"
: ${XGETTEXT=xgettext}
${XGETTEXT} --add-comments --omit-header --no-location --keyword=_ \
-d xg-py-4.tmp xg-py-4.py
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
LC_ALL=C tr -d '\r' < xg-py-4.tmp.po > xg-py-4.po
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tmpfiles="$tmpfiles xg-py-4.ok"
cat <<EOF > xg-py-4.ok
#. a
#. b
#. c
#. d
msgid "hello world"
msgstr ""
EOF
: ${DIFF=diff}
${DIFF} xg-py-4.ok xg-py-4.po
result=$?
rm -fr $tmpfiles
exit $result