28 lines
464 B
Bash
28 lines
464 B
Bash
#! /bin/sh
|
|
|
|
# Test a succeeding comparison.
|
|
|
|
tmpfiles=""
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="$tmpfiles mc-test1.in1 mc-test1.in2"
|
|
cat <<EOF > mc-test1.in1
|
|
msgid "one" msgstr "first"
|
|
msgid "two" msgstr "second"
|
|
msgid "three" msgstr "third"
|
|
EOF
|
|
|
|
cat <<EOF > mc-test1.in2
|
|
msgid "three" msgstr ""
|
|
msgid "one" msgstr ""
|
|
msgid "two" msgstr ""
|
|
EOF
|
|
|
|
: ${MSGCMP=msgcmp}
|
|
${MSGCMP} mc-test1.in1 mc-test1.in2 > /dev/null 2>&1
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|