summaryrefslogtreecommitdiff
path: root/tests/distdir.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/distdir.test')
-rwxr-xr-xtests/distdir.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/distdir.test b/tests/distdir.test
index 96760c20b..641a307b7 100755
--- a/tests/distdir.test
+++ b/tests/distdir.test
@@ -19,7 +19,7 @@
# EXTRA_DIST = ./joe
# does not work portably: it fails with HP-UX and Tru64 make.
-. ./defs || exit 1
+. ./defs || Exit 1
set -e
@@ -46,7 +46,7 @@ cd build
../configure
$MAKE distdir
# Check to make sure `foo' isn't made in build directory.
-test -d foo && exit 1
+test -d foo && Exit 1
rm -rf distdir-1.0
# Remove the dot from VERSION for the next grep.
@@ -54,10 +54,10 @@ VERSION=10 MKDIR_P='echo MKDIR_P' $MAKE -e distdir >make.log || :
# Make sure no `./' appear in the directory names. srcdir is `..', so
# this also checks that no directory is created in the source tree.
-grep 'MKDIR_P.*\.' make.log && exit 1
+grep 'MKDIR_P.*\.' make.log && Exit 1
cd ..
./configure --prefix "`pwd`"
$MAKE distcheck
-exit 0
+Exit 0