diff options
Diffstat (limited to 't/tap-result-comment.sh')
-rwxr-xr-x | t/tap-result-comment.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/tap-result-comment.sh b/t/tap-result-comment.sh index 21bc81030..42907518e 100755 --- a/t/tap-result-comment.sh +++ b/t/tap-result-comment.sh @@ -17,7 +17,7 @@ # TAP support: # - non-directive comments in TAP results are kept verbatim -. ./defs || Exit 1 +. ./defs || exit 1 . "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh" @@ -30,7 +30,7 @@ not ok # TOD${tab} ok 5 # ${tab}${tab}TOOD${tab}${sp}${sp} END -$MAKE check >stdout && { cat stdout; Exit 1; } +$MAKE check >stdout && { cat stdout; exit 1; } cat stdout count_test_results total=5 pass=3 fail=2 xpass=0 xfail=0 skip=0 error=0 |