summaryrefslogtreecommitdiff
path: root/t/tap-deps.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-deps.sh')
-rwxr-xr-xt/tap-deps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/tap-deps.sh b/t/tap-deps.sh
index 6ebe0f916..ee76e938f 100755
--- a/t/tap-deps.sh
+++ b/t/tap-deps.sh
@@ -17,7 +17,7 @@
# Basic TAP test protocol support:
# - dependencies between test scripts
-. ./defs || Exit 1
+. ./defs || exit 1
cat > Makefile.am << 'END'
# The tests are *deliberately* listed in inversed order here.
@@ -62,7 +62,7 @@ END
chmod a+x *.test
-$MAKE check >stdout || { cat stdout; Exit 1; }
+$MAKE check >stdout || { cat stdout; exit 1; }
cat stdout
count_test_results total=5 pass=5 fail=0 xpass=0 xfail=0 skip=0 error=0