tests: rename 'tests/' => 't/', '*.test' => '*.sh'
[platform/upstream/automake.git] / t / dirlist2.sh
1 #! /bin/sh
2 # Copyright (C) 2002-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 # Check dirlist globbing support.
18
19 . ./defs || Exit 1
20
21 cat > configure.ac <<EOF
22 AC_INIT
23 AM_INIT_GUILE_MODULE
24 AM_FOO_BAR
25 EOF
26
27 mkdir dirlist21-test dirlist22-test
28
29 cat >dirlist21-test/dirlist21-check.m4 <<'END'
30 AC_DEFUN([AM_INIT_GUILE_MODULE],[
31 . $srcdir/../GUILE-VERSION
32 AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
33 AC_CONFIG_AUX_DIR(..)
34 module=[$1]
35 AC_SUBST(module)])
36 END
37
38 cat >dirlist22-test/dirlist22-check.m4 <<'END'
39 AC_DEFUN([AM_FOO_BAR],[
40 : foo bar baz
41 ])
42 END
43
44 mkdir my-acdir
45 cat > my-acdir/dirlist <<'END'
46 dirlist2*-test
47 END
48
49 $ACLOCAL --system-acdir my-acdir
50 $AUTOCONF
51
52 # There should be no m4_include in aclocal.m4, even though m4/dirlist
53 # contains './dirlist-test' as a relative directory.  Only -I directories
54 # are subject to file inclusion.
55 grep m4_include aclocal.m4 && Exit 1
56
57 grep 'GUILE-VERSION' configure
58 grep 'foo bar baz' configure
59
60 :