blob: d9b7346e4beba59e5015ba430c6bc4c8d87ba004 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#! /bin/sh
# Test compendium option.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles mm-test6.in1 mm-test6.com mm-test6.pot"
cat <<EOF > mm-test6.in1
#: file.c:123
msgid "1"
msgstr "1x"
EOF
cat <<EOF > mm-test6.com
#: file.c:345
msgid "2"
msgstr "2x"
EOF
cat <<EOF > mm-test6.pot
#: file.c:123
msgid "1"
msgstr ""
#: file.c:345
msgid "2"
msgstr ""
EOF
tmpfiles="$tmpfiles mm-test6.out"
: ${MSGMERGE=msgmerge}
${MSGMERGE} -q -C mm-test6.com mm-test6.in1 mm-test6.pot -o mm-test6.out
tmpfiles="$tmpfiles mm-test6.ok"
cat << EOF > mm-test6.ok
#: file.c:123
msgid "1"
msgstr "1x"
#: file.c:345
msgid "2"
msgstr "2x"
EOF
: ${DIFF=diff}
${DIFF} mm-test6.ok mm-test6.out
result=$?
rm -fr $tmpfiles
exit $result
|