3 # Test handling of comments.
6 trap 'rm -fr $tmpfiles' 1 2 3 15
8 tmpfiles
="$tmpfiles mm-test4.in1.po mm-test4.in2.po"
9 cat <<EOF > mm-test4.in1.po
12 # This comment should be copied.
22 cat <<EOF > mm-test4.in2.po
25 # This is a comment in the POT file.
30 tmpfiles
="$tmpfiles mm-test4.out"
31 : ${MSGMERGE=msgmerge}
32 ${MSGMERGE} -q mm-test4.in1.po mm-test4.in2.po
-o mm-test4.out
33 test $?
= 0 ||
{ rm -fr $tmpfiles; exit 1; }
35 tmpfiles
="$tmpfiles mm-test4.ok"
36 cat <<EOF > mm-test4.ok
40 # This is a comment in the POT file.
44 # This comment should be copied.
54 ${DIFF} mm-test4.ok mm-test4.out