tests: avoid use of redirected 'run_make' invocations
[platform/upstream/automake.git] / t / tap-planskip-and-logging.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2013 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 . test-init.sh
22
23 . tap-setup.sh
24
25 echo TEST_LOG_DRIVER_FLAGS = --comments >> Makefile
26
27 cat > foo.test <<END
28 1..0
29 a non-TAP line
30 # a comment
31 END
32
33 cat > foo2.test <<END
34 a non-TAP line 2
35 # a comment 2
36 1..0
37 END
38
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
47
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
50
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
55
56 cat foo.log
57 cat foo2.log
58 cat bar.log
59
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
69
70 :