summaryrefslogtreecommitdiff
path: root/t/tap-msg0-planskip.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-msg0-planskip.sh')
-rwxr-xr-xt/tap-msg0-planskip.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/tap-msg0-planskip.sh b/t/tap-msg0-planskip.sh
index 7f435e929..7602affb1 100755
--- a/t/tap-msg0-planskip.sh
+++ b/t/tap-msg0-planskip.sh
@@ -18,14 +18,14 @@
# - literal strings "0" and "0.0" as the reason of the skip in a "TAP
# plan with skip" (i.e., "1..0 # SKIP ...").
-. ./defs || Exit 1
+. ./defs || exit 1
. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
echo '1..0 # SKIP 0' > a.test
echo '1..0 # SKIP 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=2 error=0