diff options
Diffstat (limited to 'gettext-tools/tests/format-perl-mixed-1')
-rwxr-xr-x | gettext-tools/tests/format-perl-mixed-1 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gettext-tools/tests/format-perl-mixed-1 b/gettext-tools/tests/format-perl-mixed-1 index d94abf3..119fcfd 100755 --- a/gettext-tools/tests/format-perl-mixed-1 +++ b/gettext-tools/tests/format-perl-mixed-1 @@ -35,8 +35,8 @@ while read comment; do cat <<EOF > f-pm-1-$n.in gettext(${string}); EOF - ${XGETTEXT} -L perl --omit-header --no-location -o f-pm-1-$n.po f-pm-1-$n.in || exit 1 - test -f f-pm-1-$n.po || exit 1 + ${XGETTEXT} -L perl --omit-header --no-location -o f-pm-1-$n.po f-pm-1-$n.in || Exit 1 + test -f f-pm-1-$n.po || Exit 1 fail= if test -n "${formats}"; then # Verify that the first line contains the expected #, comment. @@ -58,8 +58,8 @@ EOF cat f-pm-1-$n.in 1>&2 echo "Got:" 1>&2 cat f-pm-1-$n.po 1>&2 - exit 1 + Exit 1 fi done < f-pm-1.data -exit 0 +Exit 0 |