Merge branch master into maint after 1.12 release
[platform/upstream/automake.git] / t / tap-planskip-and-logging.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
3 #
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)
7 # any later version.
8 #
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.
13 #
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/>.
16
17 # TAP support:
18 #  - interactions between "TAP plan with SKIP" and logging of earlier or
19 #    later TAP or non-TAP text
20
21 am_parallel_tests=yes
22 . ./defs || Exit 1
23
24 . "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
25
26 echo TEST_LOG_DRIVER_FLAGS = --comments >> Makefile
27
28 cat > foo.test <<END
29 1..0
30 a non-TAP line
31 # a comment
32 END
33
34 cat > foo2.test <<END
35 a non-TAP line 2
36 # a comment 2
37 1..0
38 END
39
40 cat > bar.test <<END
41 # an early comment
42 an early non-TAP line
43  $tab
44 1..0 # SKIP
45 # a later comment
46 a later non-TAP line
47 END
48
49 TESTS='foo.test foo2.test bar.test' $MAKE -e check >stdout \
50   || { cat stdout; Exit 1; }
51 cat stdout
52
53 count_test_results total=3 pass=0 fail=0 xpass=0 xfail=0 skip=3 error=0
54
55 grep '^# foo\.test: a comment$' stdout
56 grep '^# foo2\.test: a comment 2$' stdout
57 grep '^# bar\.test: an early comment$' stdout
58 grep '^# bar\.test: a later comment$' stdout
59
60 cat foo.log
61 cat foo2.log
62 cat bar.log
63
64 grep '^a non-TAP line$' foo.log
65 grep '^# a comment$' foo.log
66 grep '^a non-TAP line 2$' foo2.log
67 grep '^# a comment 2$' foo2.log
68 grep '^# an early comment' bar.log
69 grep '^an early non-TAP line$' bar.log
70 grep '^# a later comment' bar.log
71 grep '^a later non-TAP line$' bar.log
72 grep "^ $tab$" bar.log
73
74 :