summaryrefslogtreecommitdiff
path: root/t/tap-msg0-bailout.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-msg0-bailout.sh')
-rwxr-xr-xt/tap-msg0-bailout.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/tap-msg0-bailout.sh b/t/tap-msg0-bailout.sh
index b9ef141c7..cf8918c74 100755
--- a/t/tap-msg0-bailout.sh
+++ b/t/tap-msg0-bailout.sh
@@ -19,14 +19,14 @@
# of a "plan with skip" TAP plan
# generally true!
-. ./defs || Exit 1
+. ./defs || exit 1
. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
echo 'Bail out! 0' > a.test
echo 'Bail out! 0.0' > b.test
-TESTS='a.test b.test' $MAKE -e check >stdout && { cat stdout; Exit 1; }
+TESTS='a.test b.test' $MAKE -e check >stdout && { cat stdout; exit 1; }
cat stdout
count_test_results total=2 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=2