X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Ftap-exit.sh;h=95c194ebec486f4e68ca492d3332a432f1873333;hb=a7c00e1935726a32dca6871dd0f1b7eda28d0a5b;hp=abc1ace0d059b799d003e258cd4d338f3676f0a8;hpb=119d65e9e06ffc6e8997d3ba386429db6cc2ef27;p=platform%2Fupstream%2Fautomake.git diff --git a/t/tap-exit.sh b/t/tap-exit.sh old mode 100755 new mode 100644 index abc1ace..95c194e --- a/t/tap-exit.sh +++ b/t/tap-exit.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 @@ -19,8 +19,7 @@ # - the '--ignore-exit' option causes the TAP test driver to ignore # exit statuses of the test scripts. -am_parallel_tests=yes -. ./defs || Exit 1 +. test-init.sh echo TESTS = > Makefile.am for st in 1 2 77 99; do @@ -35,10 +34,9 @@ done chmod a+x *.test -. "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh" +. tap-setup.sh -$MAKE check >stdout && { cat stdout; Exit 1; } -cat stdout +run_make -O -e FAIL check count_test_results total=8 pass=4 fail=0 xpass=0 xfail=0 skip=0 error=4 grep '^ERROR: exit1\.test - exited with status 1$' stdout @@ -47,8 +45,7 @@ grep '^ERROR: exit77\.test - exited with status 77$' stdout grep '^ERROR: exit99\.test - exited with status 99$' stdout echo TEST_LOG_DRIVER_FLAGS = --ignore-exit >> Makefile -$MAKE check >stdout || { cat stdout; Exit 1; } -cat stdout +run_make -O check count_test_results total=4 pass=4 fail=0 xpass=0 xfail=0 skip=0 error=0 :