diff options
Diffstat (limited to 'gettext-tools/tests/gettext-6')
-rwxr-xr-x | gettext-tools/tests/gettext-6 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gettext-tools/tests/gettext-6 b/gettext-tools/tests/gettext-6 index 7bc4e01..cadfbc8 100755 --- a/gettext-tools/tests/gettext-6 +++ b/gettext-tools/tests/gettext-6 @@ -15,7 +15,7 @@ esac } || { echo "Skipping test: not a glibc or Mac OS X system" - exit 77 + Exit 77 } # This test works only on systems that have a de_DE and fr_FR locale installed. @@ -26,7 +26,7 @@ if test -n "$missing_locale"; then else echo "Skipping test: locale ${missing_locale} not supported" fi - exit 77 + Exit 77 fi test -d gt-6 || mkdir gt-6 @@ -51,11 +51,11 @@ case $? in 0) ;; 77) echo "Skipping test: not a glibc >= 2.3 or MacOS X >= 10.5 system" - exit 77 + Exit 77 ;; esac : ${DIFF=diff} -${DIFF} gt-6.ok gt-6.out || exit 1 +${DIFF} gt-6.ok gt-6.out || Exit 1 -exit 0 +Exit 0 |