maint: Update HACKING
[automake.git] / t / aclocal-verbose-install.sh
blobbcbbcfa6bc943e3598159e90b36e60c28d390ac6
1 #! /bin/sh
2 # Copyright (C) 2011-2017 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 verbose messages by 'aclocal --install'.
19 am_create_testdir=empty
20 . test-init.sh
22 cat > configure.ac <<END
23 AC_INIT([$me], [1.0])
24 MY_MACRO_BAR
25 MY_MACRO_QUUX
26 END
28 mkdir sys-acdir
29 cat > sys-acdir/bar.m4 <<END
30 AC_DEFUN([MY_MACRO_BAR], [:])
31 END
32 cat > sys-acdir/quux.m4 <<END
33 AC_DEFUN([MY_MACRO_QUUX], [:])
34 END
36 mkdir foodir
37 : > foodir/bar.m4
39 $ACLOCAL --system-acdir=sys-acdir --install --verbose -I foodir 2>stderr \
40 || { cat stderr >&2; exit 1; }
41 cat stderr >&2
42 grep ' installing .*sys-acdir/bar\.m4.* to .*foodir/bar\.m4' stderr
43 grep ' installing .*sys-acdir/quux\.m4.* to .*foodir/quux\.m4' stderr
44 grep ' overwriting .*foodir/bar\.m4.* with .*sys-acdir/bar\.m4' stderr
45 grep ' installing .*foodir/quux\.m4.* from .*sys-acdir/quux\.m4' stderr
47 # Sanity checks.
48 ls -l foodir
49 grep MY_MACRO_BAR foodir/bar.m4
50 grep MY_MACRO_QUUX foodir/quux.m4