Merge branch 'rmch'
[platform/upstream/automake.git] / t / test-missing.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 # parallel-tests:
18 #  - non-existent scripts listed in TESTS get diagnosed
19 # See also related test 'test-missing2.test'.
20
21 am_parallel_tests=yes
22 . ./defs || Exit 1
23
24 cat >> configure.ac << 'END'
25 AC_OUTPUT
26 END
27
28 cat > Makefile.am << 'END'
29 TESTS = ok.test zardoz.test
30 TEST_LOG_COMPILER = true
31 END
32
33 : > ok.test
34
35 $ACLOCAL
36 $AUTOCONF
37 $AUTOMAKE -a
38
39 ./configure
40
41 $MAKE check >output 2>&1 && { cat output; Exit 1; }
42 cat output
43 test -f ok.log
44 grep '^PASS: ok\.test' output
45 $FGREP 'zardoz.log' output
46 test ! -f test-suite.log
47
48 TESTS='zardoz2.test' $MAKE -e check >output 2>&1 \
49   && { cat output; Exit 1; }
50 cat output
51 $FGREP 'zardoz2.log' output
52 test ! -f test-suite.log
53
54 TEST_LOGS='zardoz3.log' $MAKE -e check >output 2>&1 \
55   && { cat output; Exit 1; }
56 cat output
57 $FGREP 'zardoz3.log' output
58 test ! -f test-suite.log
59
60 # The errors should persist even after 'test-suite.log'
61 # has been created.
62
63 : > zardoz.test
64 $MAKE check
65 rm -f zardoz.test
66
67 $MAKE check >output 2>&1 && { cat output; Exit 1; }
68 cat output
69 $FGREP 'zardoz.log' output
70 test ! -f test-suite.log
71
72 :