#! /bin/sh
# One argument is required which is the path to the toplevel directory
# of the distribution.

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

# Preserve executable bits for this shell script.
# Thanks to Noah Friedman for this great trick.
Local Variables:
Eval: (defun frobme () (set-file-modes buffer-file-name file-mode))
Eval: (make-local-variable 'file-mode)
Eval: (setq file-mode (file-modes (buffer-file-name)))
Eval: (make-local-variable 'after-save-hook)
Eval: (add-hook 'after-save-hook 'frobme)
End:
