42 lines
793 B
Plaintext
42 lines
793 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
# Test a failing comparison with Java .properties syntax.
|
||
|
|
||
|
tmpfiles=""
|
||
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
||
|
|
||
|
tmpfiles="$tmpfiles mc-test3.in1 mc-test3.in2"
|
||
|
cat <<EOF > mc-test3.in1
|
||
|
one=first
|
||
|
two=second
|
||
|
three=third
|
||
|
four=fourth
|
||
|
EOF
|
||
|
|
||
|
cat <<EOF > mc-test3.in2
|
||
|
!thre=
|
||
|
!one=
|
||
|
!two=
|
||
|
EOF
|
||
|
|
||
|
tmpfiles="$tmpfiles mc-test3.out"
|
||
|
: ${MSGCMP=msgcmp}
|
||
|
LC_MESSAGES=C LC_ALL= \
|
||
|
${MSGCMP} --properties-input mc-test3.in1 mc-test3.in2 2>&1 | grep -v '^==' > mc-test3.out
|
||
|
|
||
|
tmpfiles="$tmpfiles mc-test3.ok"
|
||
|
cat <<EOF > mc-test3.ok
|
||
|
mc-test3.in2:1: this message is used but not defined...
|
||
|
mc-test3.in1:3: ...but this definition is similar
|
||
|
mc-test3.in1:4: warning: this message is not used
|
||
|
msgcmp: found 1 fatal error
|
||
|
EOF
|
||
|
|
||
|
: ${DIFF=diff}
|
||
|
${DIFF} mc-test3.ok mc-test3.out
|
||
|
result=$?
|
||
|
|
||
|
rm -fr $tmpfiles
|
||
|
|
||
|
exit $result
|