summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgmerge-properties-2
blob: aace912fee36f1e6a530a9563da68ae155d4aca0 (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
31
32
33
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test --update: location changed, and xgettext comment added. Both changes
# must be reflected in the resulting PO file. With Java .properties syntax.

cat <<\EOF > mm-p-2.po
#: cogarithmetic.cc:12
white=wei\u00df
EOF

cat <<EOF > mm-p-2.pot
#. location changed
#: cogarithmetic.cc:33
!white=
EOF

: ${MSGMERGE=msgmerge}
${MSGMERGE} -q --properties-input --update mm-p-2.po mm-p-2.pot || exit 1
mv mm-p-2.po mm-p-2.tmp || { exit 1; }
LC_ALL=C tr -d '\r' < mm-p-2.tmp > mm-p-2.po || exit 1

cat <<\EOF > mm-p-2.ok
#. location changed
#: cogarithmetic.cc:33
white=wei\u00df
EOF

: ${DIFF=diff}
${DIFF} mm-p-2.ok mm-p-2.po
result=$?

exit $result