summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/format-sh-1
diff options
context:
space:
mode:
Diffstat (limited to 'gettext-tools/tests/format-sh-1')
-rwxr-xr-xgettext-tools/tests/format-sh-18
1 files changed, 4 insertions, 4 deletions
diff --git a/gettext-tools/tests/format-sh-1 b/gettext-tools/tests/format-sh-1
index e274a7b..28c7623 100755
--- a/gettext-tools/tests/format-sh-1
+++ b/gettext-tools/tests/format-sh-1
@@ -40,8 +40,8 @@ while read comment; do
LC_ALL=C sed -e 's,\$,\\$,g' <<EOF > f-sh-1-$n.in
gettext ${string};
EOF
- ${XGETTEXT} -L Shell --from-code=ISO-8859-1 -o f-sh-1-$n.po f-sh-1-$n.in || exit 1
- test -f f-sh-1-$n.po || exit 1
+ ${XGETTEXT} -L Shell --from-code=ISO-8859-1 -o f-sh-1-$n.po f-sh-1-$n.in || Exit 1
+ test -f f-sh-1-$n.po || Exit 1
fail=
if echo "$comment" | grep 'Valid:' > /dev/null; then
if grep sh-format f-sh-1-$n.po > /dev/null; then
@@ -61,9 +61,9 @@ EOF
cat f-sh-1-$n.in 1>&2
echo "Got:" 1>&2
cat f-sh-1-$n.po 1>&2
- exit 1
+ Exit 1
fi
rm -f f-sh-1-$n.in f-sh-1-$n.po
done < f-sh-1.data
-exit 0
+Exit 0