diff options
Diffstat (limited to 'gettext-tools/tests/msgmerge-properties-1')
-rwxr-xr-x | gettext-tools/tests/msgmerge-properties-1 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gettext-tools/tests/msgmerge-properties-1 b/gettext-tools/tests/msgmerge-properties-1 index 27304e9..6f56861 100755 --- a/gettext-tools/tests/msgmerge-properties-1 +++ b/gettext-tools/tests/msgmerge-properties-1 @@ -5,8 +5,8 @@ tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 -tmpfiles="$tmpfiles mm-test23.in1 mm-test23.in2" -cat <<EOF > mm-test23.in1 +tmpfiles="$tmpfiles mm-p-1.in1 mm-p-1.in2" +cat <<EOF > mm-p-1.in1 # # def.po # @@ -23,7 +23,7 @@ still\ existing=translation # trailing comments should be removed EOF -cat <<EOF > mm-test23.in2 +cat <<EOF > mm-p-1.in2 # # ref.po # @@ -37,13 +37,13 @@ still\ existing=here is normally no comment # trailing comments should be removed, even here EOF -tmpfiles="$tmpfiles mm-test23.out" +tmpfiles="$tmpfiles mm-p-1.out" : ${MSGMERGE=msgmerge} -${MSGMERGE} -q --properties-input --properties-output mm-test23.in1 mm-test23.in2 -o mm-test23.out +${MSGMERGE} -q --properties-input --properties-output mm-p-1.in1 mm-p-1.in2 -o mm-p-1.out test $? = 0 || { rm -fr $tmpfiles; exit 1; } -tmpfiles="$tmpfiles mm-test23.ok" -cat << EOF > mm-test23.ok +tmpfiles="$tmpfiles mm-p-1.ok" +cat << EOF > mm-p-1.ok #: file3:102 still\ existing=translation @@ -52,7 +52,7 @@ still\ existing=translation EOF : ${DIFF=diff} -${DIFF} mm-test23.ok mm-test23.out +${DIFF} mm-p-1.ok mm-p-1.out result=$? rm -fr $tmpfiles |