tests: expose automake bug#14560
[platform/upstream/automake.git] / t / txinfo-override-texinfo-tex.sh
1 #! /bin/sh
2 # Copyright (C) 2003-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 the user can override TEXINFO_TEX.
18 # Also make sure TEXINFO_TEX is not distributed.
19 # Report from Tom Tromey.
20
21 required='makeinfo tex texi2dvi'
22 . test-init.sh
23
24 cat > configure.ac << END
25 AC_INIT([$me], [1.0])
26 AC_CONFIG_AUX_DIR([aux1])
27 AM_INIT_AUTOMAKE
28 AC_CONFIG_FILES([Makefile])
29 AC_OUTPUT
30 END
31
32 cat > Makefile.am << 'END'
33 TEXINFO_TEX = $(srcdir)/tex/texinfo.tex
34 info_TEXINFOS = main.texi
35 sure_it_exists:
36         test -f $(TEXINFO_TEX)
37 sure_it_is_not_distributed: distdir
38         test ! -f $(distdir)/tex/texinfo.tex
39 END
40
41 cat > main.texi << 'END'
42 \input texinfo
43 @setfilename main.info
44 @settitle main
45 @node Top
46 Hello walls.
47 @bye
48 END
49
50 mkdir aux1
51 mkdir tex
52 cp "$am_pkgvdatadir/texinfo.tex" tex
53
54 $ACLOCAL
55 $AUTOMAKE --add-missing
56 $AUTOCONF
57
58 test ! -e texinfo.tex
59 test ! -e aux1/texinfo.tex
60 test -f tex/texinfo.tex
61
62 ./configure
63
64 $MAKE sure_it_exists
65 $MAKE distcheck
66 $MAKE sure_it_is_not_distributed
67
68 :