2 # Copyright (C) 2005-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)
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 # Make sure 'make -k check' processes all directories.
19 # For gen-testsuite-part: ==> try-with-serial-tests <==
22 cat >> configure.ac
<< 'END'
23 AC_CONFIG_FILES
([dir
/Makefile
])
29 cat > Makefile.am
<<'END'
34 echo TESTS
= fail.sh
>dir
/Makefile.am
41 cat >dir
/fail.sh
<<'END'
46 chmod +x ok.sh dir
/fail.sh
50 $AUTOMAKE --add-missing
52 .
/configure
--prefix "$(pwd)/inst"
54 $MAKE check
>stdout
&& { cat stdout
; exit 1; }
56 grep '^FAIL: fail\.sh *$' stdout
57 grep '^PASS: ok\.sh *$' stdout
&& exit 1
59 # The exit status of 'make -k' can be anything
60 # (depending on the Make implementation)
61 $MAKE -k check
>stdout ||
:
63 grep '^FAIL: fail\.sh *$' stdout
64 grep '^PASS: ok\.sh *$' stdout
66 # Should also works when -k is not in first position.
67 $MAKE -s -k check
>stdout ||
:
69 grep '^FAIL: fail\.sh *' stdout
70 grep '^PASS: ok\.sh *' stdout
72 # The rest of the test is for GNU Make.
75 # Try with a long-option that do not have a short option equivalent
76 # (here, --no-print-directory). That should cause all options to
77 # appear verbatim in MAKEFLAGS.
78 $MAKE --no-print-directory -k check
>stdout ||
:
80 grep '^FAIL: fail\.sh *$' stdout
81 grep '^PASS: ok\.sh *$' stdout