diff options
Diffstat (limited to 'gettext-tools/tests/format-kde-kuit-2')
-rwxr-xr-x | gettext-tools/tests/format-kde-kuit-2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gettext-tools/tests/format-kde-kuit-2 b/gettext-tools/tests/format-kde-kuit-2 index 0634b62..f4e5564 100755 --- a/gettext-tools/tests/format-kde-kuit-2 +++ b/gettext-tools/tests/format-kde-kuit-2 @@ -14,7 +14,7 @@ EOF LC_ALL=C ${MSGFMT} --check-format -o /dev/null f-kd-invalid.po 2>&1 | grep 'not a valid KDE KUIT format' > /dev/null 2>&1 test $? = 0 || { echo "Skipping test: msgfmt was built without KDE KUIT format support" - exit 77 + Exit 77 } cat <<\EOF > f-kd-2.data @@ -72,9 +72,9 @@ EOF if test -n "$fail"; then echo "Format string checking error:" 1>&2 cat f-kd-2-$n.po 1>&2 - exit 1 + Exit 1 fi rm -f f-kd-2-$n.po f-kd-2-$n.mo done < f-kd-2.data -exit 0 +Exit 0 |