blob: 41fd81156ba832b59a08db7138cbadc17b795cc8 (
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
|