tests: expose automake bug#13940
[platform/upstream/automake.git] / t / parallel-tests-recheck-pr11791.sh
1 #! /bin/sh
2 # Copyright (C) 2012-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 # parallel-tests: "make recheck" and "make -k recheck" in the face of
18 # build failures for the test cases.  See automake bug#11791.
19
20 required='cc native'
21 . test-init.sh
22
23 cat >> configure.ac << 'END'
24 AC_PROG_CC
25 AC_OUTPUT
26 END
27
28 cat > Makefile.am << 'END'
29 TESTS = $(EXTRA_PROGRAMS)
30 EXTRA_PROGRAMS = foo
31 END
32
33 echo 'int main (void) { return 1; }' > foo.c
34
35 $ACLOCAL
36 $AUTOCONF
37 $AUTOMAKE -a
38
39 ./configure
40
41 run_make -O -e FAIL check
42 count_test_results total=1 pass=0 fail=1 xpass=0 xfail=0 skip=0 error=0
43
44 using_gmake || $sleep # Required by BSD make.
45 run_make -O -e IGNORE -- -k recheck
46 # Don't trust the exit status of "make -k" for non-GNU makes.
47 ! using_gmake || test $am_make_rc -gt 0 || exit 1
48 count_test_results total=1 pass=0 fail=1 xpass=0 xfail=0 skip=0 error=0
49
50 # Introduce an error in foo.c, that should cause a compilation failure.
51 $sleep
52 echo choke me >> foo.c
53
54 run_make -O -e FAIL recheck
55 # We don't get a change to run the testsuite.
56 $EGREP '(X?PASS|X?FAIL|SKIP|ERROR):' stdout && exit 1
57 # These shouldn't be removed, otherwise the next make recheck will do
58 # nothing.
59 test -f foo.log
60 test -f foo.trs
61
62 using_gmake || $sleep # Required by BSD make.
63 run_make -O -e IGNORE -- -k recheck
64 # Don't trust the exit status of "make -k" for non-GNU makes.
65 ! using_gmake || test $am_make_rc -gt 0 || exit 1
66 # We don't get a change to run the testsuite.
67 $EGREP '(X?PASS|X?FAIL|SKIP|ERROR):' stdout && exit 1
68 test -f foo.log
69 test -f foo.trs
70
71 # "Repair" foo.c, and expect everything to work.
72 $sleep
73 echo 'int main (void) { return 0; }' > foo.c
74
75 run_make -O recheck
76 count_test_results total=1 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=0
77 test -f foo.log
78 test -f foo.trs
79
80 run_make -O recheck
81 count_test_results total=0 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=0
82 test -f foo.log
83 test -f foo.trs
84
85 :