depcomp: don't rely on character ranges working as in C locale
[automake.git] / t / tap-planskip-and-logging.sh
blob71426ac63c9adebd58693cd41ca867d21f6f0512
1 #! /bin/sh
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)
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 <http://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 TESTS='foo.test foo2.test bar.test' $MAKE -e check >stdout \
49 || { cat stdout; exit 1; }
50 cat stdout
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
59 cat foo.log
60 cat foo2.log
61 cat bar.log
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