tests: work around strangeness in MSYS
[automake.git] / tests / check4.test
blobbb9a2b63bfcd9126afb9566b5a4e14e1d73f3f67
1 #! /bin/sh
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)
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 <http://www.gnu.org/licenses/>.
17 # Make sure `make -k check' processes all directories.
19 . ./defs || Exit 1
21 cat >> configure.in << 'END'
22 AC_CONFIG_FILES([dir/Makefile])
23 AC_OUTPUT
24 END
26 mkdir dir
28 cat > Makefile.am <<'END'
29 SUBDIRS = dir
30 TESTS = ok.sh
31 END
33 echo TESTS = fail.sh >dir/Makefile.am
35 cat >ok.sh <<'END'
36 #!/bin/sh
38 END
40 cat >dir/fail.sh <<'END'
41 #!/bin/sh
42 exit 1
43 END
45 chmod +x ok.sh dir/fail.sh
47 $ACLOCAL
48 $AUTOCONF
49 $AUTOMAKE --add-missing
51 ./configure --prefix "`pwd`/inst"
53 $MAKE check >stdout && { cat stdout; Exit 1; }
54 cat stdout
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 || :
61 cat 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 || :
67 cat stdout
68 grep '^FAIL: fail\.sh *' stdout
69 grep '^PASS: ok\.sh *' stdout
71 # The rest of the test is for GNU Make.
73 if using_gmake; then
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 || :
78 cat stdout
79 grep '^FAIL: fail\.sh *$' stdout
80 grep '^PASS: ok\.sh *$' stdout