tests: fix a timestamp-related spurious failures
[automake.git] / tests / aclocal-path.test
blob16fd3f9829791f3cd666887b846ea31fa1cbb8ce
1 #! /bin/sh
2 # Copyright (C) 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 # Check basic ACLOCAL_PATH support.
19 am_create_testdir=empty
20 . ./defs || Exit 1
22 set -e
24 cat > configure.in << 'END'
25 AC_INIT
26 AM_FOO_MACRO
27 AM_BAR_MACRO
28 AM_BAZ_MACRO
29 END
31 mkdir mdir1 mdir2 mdir3
33 cat > mdir1/foo.m4 << 'END'
34 AC_DEFUN([AM_FOO_MACRO], [am--foo])
35 END
37 cat > mdir2/bar.m4 << 'END'
38 AC_DEFUN([AM_BAR_MACRO], [am--bar])
39 END
41 cat > mdir3/baz.m4 << 'END'
42 AC_DEFUN([AM_BAZ_MACRO], [am--baz])
43 END
45 ACLOCAL_PATH=mdir1:./mdir2:`pwd`/mdir3 $ACLOCAL
46 $AUTOCONF
48 # there should be no m4_include in aclocal.m4, even though ACLOCAL_PATH
49 # contains `mdir1' and `./mdir2' as relative directories. Only -I
50 # directories should be subject to file inclusion.
51 $FGREP m4_include aclocal.m4 && Exit 1
53 $EGREP 'AM_(FOO|BAR|BAZ)_MACRO' configure && Exit 1
54 $FGREP 'am--foo' configure
55 $FGREP 'am--bar' configure
56 $FGREP 'am--baz' configure