2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # - interactions between "TAP plan with SKIP" and logging of earlier or
19 # later TAP or non-TAP text
23 . "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
25 echo TEST_LOG_DRIVER_FLAGS = --comments >> Makefile
48 TESTS='foo.test foo2.test bar.test' $MAKE -e check >stdout \
49 || { cat stdout; exit 1; }
52 count_test_results total=3 pass=0 fail=0 xpass=0 xfail=0 skip=3 error=0
54 grep '^# foo\.test: a comment$' stdout
55 grep '^# foo2\.test: a comment 2$' stdout
56 grep '^# bar\.test: an early comment$' stdout
57 grep '^# bar\.test: a later comment$' stdout
63 grep '^a non-TAP line$' foo.log
64 grep '^# a comment$' foo.log
65 grep '^a non-TAP line 2$' foo2.log
66 grep '^# a comment 2$' foo2.log
67 grep '^# an early comment' bar.log
68 grep '^an early non-TAP line$' bar.log
69 grep '^# a later comment' bar.log
70 grep '^a later non-TAP line$' bar.log
71 grep "^ $tab$" bar.log