test: protect more yacc declarations against C vs. C++ linkage.
[automake.git] / t / aclocal-dirlist-globbing.sh
blob5255c779fbddb73f215b8f0ffabaf02c0fcf2fec
1 #! /bin/sh
2 # Copyright (C) 2002-2024 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 <https://www.gnu.org/licenses/>.
17 # Check dirlist globbing support.
19 . test-init.sh
21 cat > configure.ac <<EOF
22 AC_INIT([$me], [1.0])
23 AM_INIT_GUILE_MODULE
24 AM_FOO_BAR
25 EOF
27 mkdir dirlist21-test dirlist22-test
29 cat >dirlist21-test/dirlist21-check.m4 <<'END'
30 AC_DEFUN([AM_INIT_GUILE_MODULE],[. $srcdir/../GUILE-VERSION])
31 END
33 cat >dirlist22-test/dirlist22-check.m4 <<'END'
34 AC_DEFUN([AM_FOO_BAR],[
35 : foo bar baz
37 END
39 mkdir my-acdir
40 cat > my-acdir/dirlist <<'END'
41 dirlist2*-test
42 END
44 $ACLOCAL --system-acdir my-acdir
45 $AUTOCONF
47 # There should be no m4_include in aclocal.m4, even though m4/dirlist
48 # contains './dirlist-test' as a relative directory. Only -I directories
49 # are subject to file inclusion.
50 grep m4_include aclocal.m4 && exit 1
52 grep 'GUILE-VERSION' configure
53 grep 'foo bar baz' configure