docs: deprecate .log -> .html conversion by parallel-tests
[automake.git] / tests / substtarg.test
blobd82895470eb720fa82ca02955f56bac8a526d55c
1 #! /bin/sh
2 # Copyright (C) 2001, 2002, 2003, 2004, 2010 Free Software Foundation,
3 # Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Test that substitutions in variables work.
19 # From Lars J. Aas.
21 . ./defs || Exit 1
23 set -e
25 cat >> configure.in << 'END'
26 AC_CONFIG_SOURCE([fakelib.c])
27 AC_PROG_CC
28 RANLIB=:
29 AC_SUBST([RANLIB])
30 SUBST=hei
31 AC_SUBST([SUBST])
32 AC_OUTPUT
33 END
35 cat > Makefile.am << 'END'
36 noinst_LIBRARIES = libfake@SUBST@.a
38 libfake@SUBST@_a_SOURCES = abra.c kadabra.c
40 # then we override the target rule:
41 libfake@SUBST@.a: Makefile $(libfake@SUBST@_a_OBJECTS) $(libfake@SUBST@_a_DEPENDENCIES)
42 @echo here we do some custom stuff, instead of invoking the linker
43 END
45 $ACLOCAL
46 AUTOMAKE_fails
47 grep 'overrid.*libfake@SUBST@.a' stderr
48 $AUTOMAKE -Wno-override
49 num=`grep '^libfake@SUBST@.a:' Makefile.in | wc -l`
50 test $num -eq 1