Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / acloca10.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2005, 2012 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 # Make sure aclocal define macros in the same order as -I's.
18 # This is the same as aclocal9.test, with the macro calls reversed.
19 # (It did make a difference.)
20 #
21 # Also check for --install.
22
23 . ./defs || Exit 1
24
25 set -e
26
27 cat >> configure.in << 'END'
28 MACRO2
29 MACRO1
30 MACRO3
31 END
32
33 mkdir m4_1 m4_2 dirlist-test
34
35 cat >m4_1/somedefs.m4 <<EOF
36 AC_DEFUN([MACRO1], [echo macro11 >> foo])
37 AC_DEFUN([MACRO2], [echo macro21 > foo])
38 EOF
39
40 cat >m4_2/somedefs.m4 <<EOF
41 AC_DEFUN([MACRO1], [echo macro12 >> foo])
42 EOF
43
44 cat >dirlist-test/macro.m4 <<EOF
45 AC_DEFUN([MACRO3], [echo macro3 >> foo])
46 EOF
47
48 $ACLOCAL -I m4_1 -I m4_2
49 $AUTOCONF
50 ./configure
51 grep macro11 foo
52 grep macro21 foo
53 grep macro3 foo
54 grep MACRO3 aclocal.m4
55 test ! -f m4_1/macro.m4
56 test ! -f m4_2/macro.m4
57
58 $sleep
59
60 $ACLOCAL -I m4_2 -I m4_1
61 $AUTOCONF
62 ./configure
63 grep macro12 foo
64 grep macro21 foo
65 grep macro3 foo
66 grep MACRO3 aclocal.m4
67 test ! -f m4_1/macro.m4
68 test ! -f m4_2/macro.m4
69
70 $sleep
71
72 $ACLOCAL -I m4_1 -I m4_2 --install
73 $AUTOCONF
74 ./configure
75 grep macro11 foo
76 grep macro21 foo
77 grep macro3 foo
78 grep MACRO3 aclocal.m4 && Exit 1
79 test -f m4_1/macro.m4
80 test ! -f m4_2/macro.m4
81 cp aclocal.m4 copy.m4
82
83 $sleep
84
85 echo '#GREPME' >>dirlist-test/macro.m4
86 $ACLOCAL -I m4_1 -I m4_2 --install
87 $AUTOCONF
88 ./configure
89 grep macro11 foo
90 grep macro21 foo
91 grep macro3 foo
92 grep MACRO3 aclocal.m4 && Exit 1
93 grep GREPME m4_1/macro.m4 && Exit 1
94 test -f m4_1/macro.m4
95 test ! -f m4_2/macro.m4
96 diff aclocal.m4 copy.m4