tests: expose automake bug#14560
[platform/upstream/automake.git] / t / aclocal-path.sh
1 #! /bin/sh
2 # Copyright (C) 2011-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 basic ACLOCAL_PATH support.
18
19 am_create_testdir=empty
20 . test-init.sh
21
22 cat > configure.ac << 'END'
23 AC_INIT
24 AM_FOO_MACRO
25 AM_BAR_MACRO
26 AM_BAZ_MACRO
27 END
28
29 mkdir mdir1 mdir2 mdir3
30
31 cat > mdir1/foo.m4 << 'END'
32 AC_DEFUN([AM_FOO_MACRO], [am--foo])
33 END
34
35 cat > mdir2/bar.m4 << 'END'
36 AC_DEFUN([AM_BAR_MACRO], [am--bar])
37 END
38
39 cat > mdir3/baz.m4 << 'END'
40 AC_DEFUN([AM_BAZ_MACRO], [am--baz])
41 END
42
43 ACLOCAL_PATH=mdir1:./mdir2:$(pwd)/mdir3 $ACLOCAL
44 $AUTOCONF
45
46 # there should be no m4_include in aclocal.m4, even though ACLOCAL_PATH
47 # contains 'mdir1' and './mdir2' as relative directories.  Only -I
48 # directories should be subject to file inclusion.
49 $FGREP m4_include aclocal.m4 && exit 1
50
51 $EGREP 'AM_(FOO|BAR|BAZ)_MACRO' configure && exit 1
52 $FGREP 'am--foo' configure
53 $FGREP 'am--bar' configure
54 $FGREP 'am--baz' configure
55
56 :