2 # Copyright (C) 2005, 2007, 2008, 2011 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.
21 cat >> configure.
in << 'END'
22 AC_CONFIG_FILES
([dir
/Makefile
])
28 cat > Makefile.am
<<'END'
33 echo TESTS
= fail.sh
>dir
/Makefile.am
40 cat >dir
/fail.sh
<<'END'
45 chmod +x ok.sh dir
/fail.sh
49 $AUTOMAKE --add-missing
51 .
/configure
--prefix "`pwd`/inst"
53 $MAKE check
>stdout
&& { cat stdout
; Exit
1; }
55 grep '^FAIL: fail\.sh *$' stdout
56 grep '^PASS: ok\.sh *$' stdout
&& Exit
1
58 # The exit status of `make -k' can be anything
59 # (depending on the Make implementation)
60 $MAKE -k check
>stdout ||
:
62 grep '^FAIL: fail\.sh *$' stdout
63 grep '^PASS: ok\.sh *$' stdout
65 # Should also works when -k is not in first position.
66 $MAKE -s -k check
>stdout ||
:
68 grep '^FAIL: fail\.sh *' stdout
69 grep '^PASS: ok\.sh *' stdout
71 # The rest of the test is for GNU Make.
74 # Try with a long-option that do not have a short option equivalent
75 # (here, --no-print-directory). That should cause all options to
76 # appear verbatim in MAKEFLAGS.
77 $MAKE --no-print-directory -k check
>stdout ||
:
79 grep '^FAIL: fail\.sh *$' stdout
80 grep '^PASS: ok\.sh *$' stdout