summaryrefslogtreecommitdiff
path: root/t/parallel-tests-once.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/parallel-tests-once.sh')
-rwxr-xr-xt/parallel-tests-once.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/parallel-tests-once.sh b/t/parallel-tests-once.sh
index 51912fbd1..67fcbab10 100755
--- a/t/parallel-tests-once.sh
+++ b/t/parallel-tests-once.sh
@@ -18,7 +18,7 @@
# clean directory. An early implementation of the '.trs' intermediate
# files incurred a similar problem.
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac << 'END'
AC_OUTPUT
@@ -30,7 +30,7 @@ END
cat > foo.test <<'END'
#! /bin/sh
-test -f foo.run && Exit 1
+test -f foo.run && exit 1
: > foo.run
END
chmod a+x foo.test