tests: expose automake bug#14560
[platform/upstream/automake.git] / t / version7.sh
1 #! /bin/sh
2 # Copyright (C) 2002-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 # Test for a special setup where the package's version isn't defined
18 # in configure.ac.  We want GNU Make for this test (part of the test
19 # is to make sure Makefile.ins get rebuilt when a m4_included file
20 # changes -- we don't support this feature on non-GNU Makes).
21
22 required='makeinfo tex texi2dvi'
23 . test-init.sh
24
25 cat >configure.ac <<END
26 m4_include([version.m4])
27 AC_INIT([$me], [THE_VERSION])
28 AM_INIT_AUTOMAKE
29 AC_CONFIG_FILES([Makefile])
30 AC_OUTPUT
31 END
32
33 echo 'm4_define([THE_VERSION], [2.718])' > version.m4
34
35 cat > Makefile.am << 'END'
36 info_TEXINFOS = zardoz.texi
37
38 check:
39         test -f $(srcdir)/version.m4
40 END
41
42 cat > zardoz.texi << 'END'
43 \input texinfo
44 @setfilename zardoz.info
45 @settitle Zardoz
46 @node Top
47 Hello walls.
48 @include version.texi
49 @bye
50 END
51
52 $ACLOCAL
53 $AUTOCONF
54 $AUTOMAKE --add-missing
55 ./configure --version | grep '2\.718'
56 ./configure
57 $MAKE
58 grep '2\.718' version.texi
59
60 $sleep
61 echo 'm4_define([THE_VERSION], [3.141])' > version.m4
62 using_gmake || $MAKE Makefile
63 $MAKE distcheck
64 ./configure --version | grep '3\.141'
65 grep '3\.141' version.texi
66
67 :