summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgmerge-properties-2
blob: 595f0eb18eb5fd0afffeb3265d19757a0ef629b3 (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