Merge branch 'minor'
[automake.git] / t / tap-planskip-and-logging.sh
blob0db7bf0f10ed053764b1e32866b19cfb94f5da6f
1 #! /bin/sh
2 # Copyright (C) 2011-2017 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)
7 # any later version.
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 <https://www.gnu.org/licenses/>.
17 # TAP support:
18 # - interactions between "TAP plan with SKIP" and logging of earlier or
19 # later TAP or non-TAP text
21 . test-init.sh
23 . tap-setup.sh
25 echo TEST_LOG_DRIVER_FLAGS = --comments >> Makefile
27 cat > foo.test <<END
28 1..0
29 a non-TAP line
30 # a comment
31 END
33 cat > foo2.test <<END
34 a non-TAP line 2
35 # a comment 2
36 1..0
37 END
39 cat > bar.test <<END
40 # an early comment
41 an early non-TAP line
42 $tab
43 1..0 # SKIP
44 # a later comment
45 a later non-TAP line
46 END
48 run_make -O TESTS='foo.test foo2.test bar.test' check
49 count_test_results total=3 pass=0 fail=0 xpass=0 xfail=0 skip=3 error=0
51 grep '^# foo\.test: a comment$' stdout
52 grep '^# foo2\.test: a comment 2$' stdout
53 grep '^# bar\.test: an early comment$' stdout
54 grep '^# bar\.test: a later comment$' stdout
56 cat foo.log
57 cat foo2.log
58 cat bar.log
60 grep '^a non-TAP line$' foo.log
61 grep '^# a comment$' foo.log
62 grep '^a non-TAP line 2$' foo2.log
63 grep '^# a comment 2$' foo2.log
64 grep '^# an early comment' bar.log
65 grep '^an early non-TAP line$' bar.log
66 grep '^# a later comment' bar.log
67 grep '^a later non-TAP line$' bar.log
68 grep "^ $tab$" bar.log