summaryrefslogtreecommitdiffstats
path: root/tests/msgcmp-1
blob: 55683a0a81e677c4b5bb4c4c7975214c8f8ef436 (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
#! /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: