tests: avoid a spurious failure on MSYS
[platform/upstream/automake.git] / t / aclocal-scan-configure-ac-pr319.sh
1 #! /bin/sh
2 # Copyright (C) 2004-2013 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 scans configure.ac for macro definitions.
18 # PR/319.
19
20 am_create_testdir=empty
21 . test-init.sh
22
23 # Start macros with AM_ because that causes aclocal to complain if it
24 # cannot find them.
25
26 cat > configure.ac << 'END'
27 AC_INIT
28 m4_include([somedef.m4])
29 AC_DEFUN([AM_SOME_MACRO])
30 AC_DEFUN([AM_SOME_OTHER_MACRO])
31 AM_SOME_MACRO
32 AM_SOME_OTHER_MACRO
33 AM_MORE_MACRO
34 END
35
36 mkdir m4
37 echo 'AC_DEFUN([AM_SOME_MACRO])' > m4/some.m4
38 echo 'AC_DEFUN([AM_SOME_DEF])' > somedef.m4
39 echo 'AC_DEFUN([AM_MORE_MACRO], [AC_REQUIRE([AM_SOME_DEF])])' > m4/more.m4
40
41 $ACLOCAL -I m4
42 $FGREP AM_SOME_MACRO aclocal.m4 && exit 1
43 $FGREP AM_MORE_MACRO aclocal.m4 && exit 1
44 $FGREP 'm4_include([m4/more.m4])' aclocal.m4
45 test 1 = $(grep m4_include aclocal.m4 | wc -l)
46
47 :