summaryrefslogtreecommitdiff
path: root/t/test-driver-fail.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/test-driver-fail.sh')
-rwxr-xr-xt/test-driver-fail.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/test-driver-fail.sh b/t/test-driver-fail.sh
index 75f6a87f4..fed309e74 100755
--- a/t/test-driver-fail.sh
+++ b/t/test-driver-fail.sh
@@ -22,7 +22,7 @@
# (like our dummy one in this test) might leave around a test log even
# in case of internal failures.
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac <<'END'
AC_OUTPUT
@@ -45,7 +45,7 @@ $AUTOMAKE
./configure
# The testsuite driver does not exist.
-$MAKE check && Exit 1
+$MAKE check && exit 1
test ! -f test-suite.log
# The testsuite driver exists and create the test log files, but fails.
@@ -58,7 +58,7 @@ exit 1
END
chmod a+x oops
-$MAKE check && Exit 1
+$MAKE check && exit 1
test ! -f test-suite.log
: