X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Ftap-fancy2.sh;h=c0742f16addfd11c847b569c49885717f14ccd64;hb=d81424aa9a976e0854af3a3e4aad00a603cd02b4;hp=4bf014f8af9d52614961d5aa05093d04144bd415;hpb=78c4ba0d0799522c1cf0ad2ea666c100c609216c;p=platform%2Fupstream%2Fautomake.git diff --git a/t/tap-fancy2.sh b/t/tap-fancy2.sh old mode 100755 new mode 100644 index 4bf014f..c0742f1 --- a/t/tap-fancy2.sh +++ b/t/tap-fancy2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2012 Free Software Foundation, Inc. +# Copyright (C) 2011-2013 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,11 +15,11 @@ # along with this program. If not, see . # TAP support: more unusual forms for valid TAP input. -# See also related test 'tap-fancy.test'. +# See also related test 'tap-fancy.sh'. -. ./defs || Exit 1 +. test-init.sh -. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh" +. tap-setup.sh # # From manpage Test::Harness::TAP(3): @@ -125,11 +125,10 @@ total=$(($total + 3)) # And add the test plan! echo 1..$total >> all.test -$MAKE check >stdout && { cat stdout; Exit 1; } -cat stdout +run_make -O -e FAIL check -$EGREP '^(PASS|FAIL|SKIP).*#.*TODO' stdout && Exit 1 -$EGREP '^X?(PASS|FAIL).*#.*SKIP' stdout && Exit 1 +$EGREP '^(PASS|FAIL|SKIP).*#.*TODO' stdout && exit 1 +$EGREP '^X?(PASS|FAIL).*#.*SKIP' stdout && exit 1 count_test_results total=$total pass=$pass fail=$fail skip=$skip \ xpass=$xpass xfail=$xfail error=$error