summaryrefslogtreecommitdiff
path: root/t/tap-global-result.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-global-result.sh')
-rwxr-xr-xt/tap-global-result.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/tap-global-result.sh b/t/tap-global-result.sh
index 6d7a4dd27..ba232c3b3 100755
--- a/t/tap-global-result.sh
+++ b/t/tap-global-result.sh
@@ -18,7 +18,7 @@
# - which global test result derives from different test results
# mixed in a single script?
-. ./defs || Exit 1
+. ./defs || exit 1
. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
@@ -140,7 +140,7 @@ END
tests=$(echo *.test) # Also required later.
-TESTS="$tests" $MAKE -e check >stdout && { cat stdout; Exit 1; }
+TESTS="$tests" $MAKE -e check >stdout && { cat stdout; exit 1; }
cat stdout
# Dirty trick required here.
@@ -149,7 +149,7 @@ for tst in $(echo " $tests " | sed 's/\.test / /'); do
done
rm -f test-suite.log
-TESTS="$tests" $MAKE -e test-suite.log && Exit 1
+TESTS="$tests" $MAKE -e test-suite.log && exit 1
cat test-suite.log
have_rst_section ()