test harness: improve catching of usage errors in script 'test-driver'
[platform/upstream/automake.git] / t / recurs-user-override.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 # Check that override of user-defined recursive targets work as
18 # expected.
19
20 . test-init.sh
21
22 cat >> configure.ac <<'END'
23 AC_CONFIG_FILES([sub/Makefile])
24 AM_EXTRA_RECURSIVE_TARGETS([foobar zardoz])
25 AC_OUTPUT
26 END
27
28 cat > Makefile.am <<'END'
29 SUBDIRS = sub
30 all-local: foobar zardoz
31 foobar:
32         : > foobar.out
33 MOSTLYCLEANFILES = foobar.out
34 check-local:
35         test -f foobar.out
36         test ! -r sub/foobar.out
37         test -f sub/zardoz.out
38         test ! -r sub/baz.out
39 END
40
41 mkdir sub
42 cat > sub/Makefile.am <<'END'
43 foobar foobar-local:
44         : > foobar.out
45 zardoz-local:
46         : > baz.out
47 zardoz:
48         : > zardoz.out
49 MOSTLYCLEANFILES = zardoz.out
50 END
51
52 $ACLOCAL
53 $AUTOCONF
54
55 AUTOMAKE_fails
56 grep '^Makefile\.am:3:.*user target.*foobar' stderr
57 grep '^Makefile\.am:.*foobar-local.*instead of foobar$' stderr
58 grep '^sub/Makefile\.am:5:.*user target.*zardoz' stderr
59 grep '^sub/Makefile\.am:.*zardoz-local.*instead of zardoz$' stderr
60
61 $AUTOMAKE -Wno-override
62
63 ./configure
64
65 $MAKE check
66 $MAKE distcheck
67
68 :