* lib/Automake/Variable.pm (_hash_varname, _hash_values): New functions.
[automake.git] / tests / dirlist2.test
blob5016bf40db564b43ae88b20af5cd6aafd98fc4fd
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Automake; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
21 # Check dirlist globbing support.
22 # This test relies on m4/dirlist
24 . ./defs || exit 1
26 set -e
28 cat > configure.in <<EOF
29 AC_INIT
30 AM_INIT_GUILE_MODULE
31 AM_FOO_BAR
32 EOF
34 mkdir dirlist21-test dirlist22-test
36 cat >dirlist21-test/dirlist21-check.m4 <<'END'
37 AC_DEFUN([AM_INIT_GUILE_MODULE],[
38 . $srcdir/../GUILE-VERSION
39 AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
40 AC_CONFIG_AUX_DIR(..)
41 module=[$1]
42 AC_SUBST(module)])
43 END
45 cat >dirlist22-test/dirlist22-check.m4 <<'END'
46 AC_DEFUN([AM_FOO_BAR],[
47 : foo bar baz
49 END
50 $ACLOCAL
51 $AUTOCONF
53 # there should be no m4_include in aclocal.m4, even tho m4/dirlist contains
54 # `./dirlist-test' as a relative directory. Only -I directories are subject
55 # to file inclusion.
56 grep m4_include aclocal.m4 && exit 1
58 grep 'GUILE-VERSION' configure
59 grep 'foo bar baz' configure