maint: Post-release administrivia
[automake.git] / t / parallel-tests-recheck-pr11791.sh
blob513d177cf7778cb320ca7ec9cf2ae03ac26b1dbe
1 #! /bin/sh
2 # Copyright (C) 2012-2018 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 # parallel-tests: "make recheck" and "make -k recheck" in the face of
18 # build failures for the test cases. See automake bug#11791.
20 required='cc native'
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AC_PROG_CC
25 AC_OUTPUT
26 END
28 cat > Makefile.am << 'END'
29 TESTS = $(EXTRA_PROGRAMS)
30 EXTRA_PROGRAMS = foo
31 END
33 echo 'int main (void) { return 1; }' > foo.c
35 $ACLOCAL
36 $AUTOCONF
37 $AUTOMAKE -a
39 ./configure
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
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
50 # Introduce an error in foo.c, that should cause a compilation failure.
51 $sleep
52 echo choke me >> foo.c
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
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
71 # "Repair" foo.c, and expect everything to work.
72 $sleep
73 echo 'int main (void) { return 0; }' > foo.c
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
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