summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgunfmt-properties-1
blob: 2184dbd0e0bcb75b4c1b9535fc230c9c8addb764 (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
34
35
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test of general operation with Java .properties syntax.

cat <<EOF > mu-p-1.in
eight=eighth

five=fifth

four=fourth

one=first

seven=seventh

six=sixth

three=third

two=second
EOF

: ${MSGFMT=msgfmt}
${MSGFMT} --properties-input -o mu-p-1.mo mu-p-1.in || Exit 1

: ${MSGUNFMT=msgunfmt}
${MSGUNFMT} --properties-output -o mu-p-1.tmp mu-p-1.mo || Exit 1
LC_ALL=C tr -d '\r' < mu-p-1.tmp > mu-p-1.out || Exit 1

: ${DIFF=diff}
${DIFF} mu-p-1.in mu-p-1.out
result=$?

exit $result