X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Ftap-fancy.sh;h=c59d0c1e53c96cb81608782f6d40cda85bf4e377;hb=c6cc38027572445a25d749db99473f82521cc79e;hp=846a9d0e63e22534f3155253a6f8329cb749012e;hpb=91ac5d2cf4ad0f1b28776d06a713118a4b191a47;p=platform%2Fupstream%2Fautomake.git diff --git a/t/tap-fancy.sh b/t/tap-fancy.sh index 846a9d0..c59d0c1 100755 --- a/t/tap-fancy.sh +++ b/t/tap-fancy.sh @@ -15,18 +15,18 @@ # along with this program. If not, see . # TAP support: some unusual forms for valid TAP input. -# See also related test 'tap-fancy2.test'. +# See also related test 'tap-fancy2.sh'. -. ./defs || Exit 1 +. ./defs || exit 1 -. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh" +. tap-setup.sh # # From manpage Test::Harness::TAP(3): # -# ``Lines written to standard output matching /^(not )?ok\b/ must be +# Lines written to standard output matching /^(not )?ok\b/ must be # interpreted as test lines. All other lines must not be considered -# test output.'' +# test output. # # Unfortunately, the exact format of TODO and SKIP directives is not as # clearly described in that manpage; but a simple reverse-engineering of @@ -68,7 +68,7 @@ not ok!#TODO? ok~#TODO END -$MAKE check >stdout && { cat stdout; Exit 1; } +$MAKE check >stdout && { cat stdout; exit 1; } cat stdout count_test_results total=21 pass=6 fail=6 xfail=4 xpass=1 skip=4 error=0 @@ -91,7 +91,7 @@ ok $weirdchars # SKIP Bail out! $weirdchars END -$MAKE check >stdout && { cat stdout; Exit 1; } +$MAKE check >stdout && { cat stdout; exit 1; } cat stdout count_test_results total=6 pass=1 fail=1 xfail=1 xpass=1 skip=1 error=1 @@ -118,7 +118,7 @@ ok # SKIP $bs Bail out! $bs END -$MAKE check >stdout && { cat stdout; Exit 1; } +$MAKE check >stdout && { cat stdout; exit 1; } cat stdout count_test_results total=6 pass=1 fail=1 xfail=1 xpass=1 skip=1 error=1