diff options
author | Daiki Ueno <ueno@gnu.org> | 2016-06-08 15:27:59 +0900 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2016-06-08 15:28:49 +0900 |
commit | 59d9b55bb203ec78be4ace221123e0d1b5827b35 (patch) | |
tree | 4bbc2d778869beac6c86475523d366b7e8700966 /gettext-tools/tests/msgcat-15 | |
parent | a2a048cfe39504db09cfbbfdfc6cb9f417b3789f (diff) | |
download | external_gettext-59d9b55bb203ec78be4ace221123e0d1b5827b35.zip external_gettext-59d9b55bb203ec78be4ace221123e0d1b5827b35.tar.gz external_gettext-59d9b55bb203ec78be4ace221123e0d1b5827b35.tar.bz2 |
tests: Use Exit instead of exit if init.sh is used
* gettext-tools/tests/*: Use Exit instead of exit, as suggested by
init.sh.
Diffstat (limited to 'gettext-tools/tests/msgcat-15')
-rwxr-xr-x | gettext-tools/tests/msgcat-15 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gettext-tools/tests/msgcat-15 b/gettext-tools/tests/msgcat-15 index 046502c..7731e5b 100755 --- a/gettext-tools/tests/msgcat-15 +++ b/gettext-tools/tests/msgcat-15 @@ -43,8 +43,8 @@ EOF rm -f mcat-test15.tmp1 : ${MSGCAT=msgcat} -${MSGCAT} -o mcat-test15.tmp1 mcat-test15.in || exit 1 -LC_ALL=C tr -d '\r' < mcat-test15.tmp1 > mcat-test15.out1 || exit 1 +${MSGCAT} -o mcat-test15.tmp1 mcat-test15.in || Exit 1 +LC_ALL=C tr -d '\r' < mcat-test15.tmp1 > mcat-test15.out1 || Exit 1 : ${DIFF=diff} ${DIFF} mcat-test15.in mcat-test15.out1 @@ -52,8 +52,8 @@ result=$? rm -f mcat-test15.tmp2 : ${MSGCAT=msgcat} -${MSGCAT} --indent -o mcat-test15.tmp2 mcat-test15.in || exit 1 -LC_ALL=C tr -d '\r' < mcat-test15.tmp2 > mcat-test15.out2 || exit 1 +${MSGCAT} --indent -o mcat-test15.tmp2 mcat-test15.in || Exit 1 +LC_ALL=C tr -d '\r' < mcat-test15.tmp2 > mcat-test15.out2 || Exit 1 cat <<\EOF > mcat-test15.ok msgid "" |