summaryrefslogtreecommitdiff
path: root/t/tap-recheck.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-recheck.sh')
-rwxr-xr-xt/tap-recheck.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/tap-recheck.sh b/t/tap-recheck.sh
index 98a960e5b..58118c422 100755
--- a/t/tap-recheck.sh
+++ b/t/tap-recheck.sh
@@ -17,7 +17,7 @@
# Test the 'recheck' target for TAP test protocol.
# Keep in sync with 'test-driver-custom-multitest-recheck.test'.
-. ./defs || Exit 1
+. ./defs || exit 1
fetch_tap_driver
@@ -90,7 +90,7 @@ do_recheck ()
*) fatal_ "invalid usage of function 'do_recheck'";;
esac
rm -f *.run
- eval "\$MAKE recheck >stdout $on_bad_rc { cat stdout; ls -l; Exit 1; }; :"
+ eval "\$MAKE recheck >stdout $on_bad_rc { cat stdout; ls -l; exit 1; }; :"
cat stdout; ls -l
}
@@ -119,7 +119,7 @@ for vpath in : false; do
count_test_results total=0 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=0
: Run the tests for the first time.
- $MAKE check >stdout && { cat stdout; Exit 1; }
+ $MAKE check >stdout && { cat stdout; exit 1; }
cat stdout
ls -l
# All the test scripts should have run.