home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
gettext-0.10.24-src.tgz
/
tar.out
/
fsf
/
gettext
/
checks
/
msgcmp-2
< prev
next >
Wrap
Lisp/Scheme
|
1996-09-28
|
1KB
|
54 lines
#! /bin/sh
# One argument is required which is the path to the toplevel directory
# of the distribution.
LANGUAGE=
LC_ALL=
LC_MESSAGES=
LANG=
export LANGUAGE LC_ALL LC_MESSAGES LANG
tmpfiles="mc-test2.in1 mc-test2.in2"
cat <<EOF > mc-test2.in1
msgid "one" msgstr "first"
msgid "two" msgstr "second"
msgid "three" msgstr "third"
msgid "four" msgstr "fourth"
EOF
cat <<EOF > mc-test2.in2
msgid "thre" msgstr "" #i.e. pretend a typo in the program
msgid "one" msgstr ""
msgid "two" msgstr ""
EOF
tmpfiles="$tmpfiles mc-test2.out"
: ${MSGCMP=msgcmp}
${MSGCMP} mc-test2.in1 mc-test2.in2 > mc-test2.out 2>&1
tmpfiles="$tmpfiles mc-test2.ok"
cat <<EOF > mc-test2.ok
mc-test2.in2:1: this message is used but not defined...
mc-test2.in1:3: ...but this definition is similar
mc-test2.in1:4: warning: this message is not used
found 1 fatal errors
EOF
: ${DIFF=diff}
${DIFF} mc-test2.ok mc-test2.out
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: