summaryrefslogtreecommitdiff
path: root/t/tap-not-ok-skip.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-not-ok-skip.sh')
-rwxr-xr-xt/tap-not-ok-skip.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/tap-not-ok-skip.sh b/t/tap-not-ok-skip.sh
index f52127ce2..f73bb0395 100755
--- a/t/tap-not-ok-skip.sh
+++ b/t/tap-not-ok-skip.sh
@@ -18,7 +18,7 @@
# - a "not ok # SKIP" line should count as a failure, for consistency
# with the prove(1) utility.
-. ./defs || Exit 1
+. ./defs || exit 1
. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
@@ -30,7 +30,7 @@ not ok - foo # SKIP
not ok 4 - bar # SKIP
END
-$MAKE check >stdout && { cat stdout; Exit 1; }
+$MAKE check >stdout && { cat stdout; exit 1; }
cat stdout
count_test_results total=4 pass=0 fail=4 skip=0 xpass=0 xfail=0 error=0