* tests/java.test: `configure' uses a trap, so use `(exit 77);
[automake/plouj.git] / tests / txinfo28.test
blobee4c8cecc72ee972e2387cbe841a0ce75d4a5007
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Automake; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
21 # Check that info files are built in builddir when needed.
22 # Similar to txinfo24.test, but obfuscating filenames with variable references.
23 # Report from Ralf Corsepius.
25 required='makeinfo tex texi2dvi-o'
26 . ./defs || exit 1
28 set -e
30 # This setting, when honored by GNU ls, used to cause an infinite loop
31 # in mdate-sh.
32 TIME_STYLE="+%Y-%m-%d %H:%M:%S"
33 export TIME_STYLE
35 echo AC_OUTPUT >> configure.in
37 cat > Makefile.am << 'END'
38 MA = ma
39 IN = in
40 PROJ = $(MA)$(IN)
41 include fragment.mk
42 info_TEXINFOS = ma$(IN).texi
43 END
45 echo 'CLEANFILES = $(PROJ).info' > fragment.mk
47 cat > main.texi << 'END'
48 \input texinfo
49 @setfilename main.info
50 @settitle main
51 @node Top
52 Hello walls.
53 @include version.texi
54 @bye
55 END
57 $ACLOCAL
58 $AUTOMAKE --add-missing
59 $AUTOCONF
61 mkdir build
62 cd build
63 ../configure
64 $MAKE
65 test -f main.info
67 cd ..
68 rm -rf build
69 ./configure
70 $MAKE
71 test -f main.info
73 # Make sure stamp-vti is older that version.texi.
74 # (A common situation in a real tree.)
75 test -f stamp-vti
76 test -f version.texi
77 $sleep
78 touch stamp-vti
80 $MAKE distclean
81 test -f stamp-vti
82 test -f version.texi
84 mkdir build
85 cd build
86 ../configure
87 $MAKE
88 # main.info should be rebuilt in the current directory
89 test -f main.info
90 test ! -f ../main.info
91 $MAKE dvi
92 test -f main.dvi
94 $MAKE distcheck