summaryrefslogtreecommitdiff
path: root/t/tap-escape-directive-2.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-escape-directive-2.sh')
-rwxr-xr-xt/tap-escape-directive-2.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/tap-escape-directive-2.sh b/t/tap-escape-directive-2.sh
index 1c72f7969..30806635d 100755
--- a/t/tap-escape-directive-2.sh
+++ b/t/tap-escape-directive-2.sh
@@ -17,7 +17,7 @@
# TAP support:
# - "escape" TODO and SKIP directives (by escaping the "#" character)
-. ./defs || Exit 1
+. ./defs || exit 1
. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
@@ -37,7 +37,7 @@ not ok \\\\\\\\\\# TODO
ok \\\\\\\\\\# SKIP
END
-$MAKE check >stdout || { cat stdout; Exit 1; }
+$MAKE check >stdout || { cat stdout; exit 1; }
cat stdout
count_test_results total=8 pass=2 fail=0 xpass=0 xfail=3 skip=3 error=0