docs: deprecate .log -> .html conversion by parallel-tests
[automake.git] / tests / txinfo23.test
blob660487d8c23f4f58444a58be6025f01610d2d4ef
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2007, 2011 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 <http://www.gnu.org/licenses/>.
17 # Check that info files are built in builddir when needed.
18 # Test with subdir Texinfo.
19 # (Similar to txinfo13.test, plus DISTCLEANFILES.)
20 # (See also txinfo24.test and txinfo25.test)
22 required='makeinfo tex texi2dvi-o'
23 . ./defs || Exit 1
25 set -e
27 cat >> configure.in << 'END'
28 AC_OUTPUT
29 END
31 cat > Makefile.am << 'END'
32 DISTCLEANFILES = subdir/*.info*
33 info_TEXINFOS = subdir/main.texi
34 subdir_main_TEXINFOS = subdir/inc.texi
36 installcheck-local:
37 test -f "$(infodir)/main.info"
38 END
40 mkdir subdir
42 cat > subdir/main.texi << 'END'
43 \input texinfo
44 @setfilename main.info
45 @settitle main
46 @node Top
47 Hello walls.
48 @include version.texi
49 @include inc.texi
50 @bye
51 END
53 cat > subdir/inc.texi << 'END'
54 I'm included.
55 END
57 $ACLOCAL
58 $AUTOMAKE --add-missing
59 $AUTOCONF
61 mkdir build
62 cd build
63 ../configure
64 $MAKE distcheck
65 test -f subdir/main.info
66 test ! -f ../subdir/main.info