cosmetics: remove trailing whitespace in some files
[platform/upstream/automake.git] / t / txinfo25.sh
1 #! /bin/sh
2 # Copyright (C) 2003-2012 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 # Check that info files are built in builddir and in srcdir can safely
18 # co-exist.  This setup is obtained by having two info files, only one
19 # of which being cleaned.
20 # (Similar to txinfo16.test, plus CLEANFILES).
21 # (See also txinfo23.test and txinfo24.test).
22
23 required='makeinfo tex texi2dvi'
24 . ./defs || Exit 1
25
26 cat >> configure.ac << 'END'
27 AC_OUTPUT
28 END
29
30 cat > Makefile.am << 'END'
31 CLEANFILES = [a-m]*.info
32 info_TEXINFOS = main.texi other.texi
33 END
34
35 cat > main.texi << 'END'
36 \input texinfo
37 @setfilename main.info
38 @settitle main
39 @node Top
40 Hello walls.
41 @include version.texi
42 @bye
43 END
44
45 cat > other.texi << 'END'
46 \input texinfo
47 @setfilename other.info
48 @settitle other
49 @node Top
50 Hello walls.
51 @include version2.texi
52 @bye
53 END
54
55 $ACLOCAL
56 $AUTOMAKE --add-missing
57 $AUTOCONF
58
59 mkdir build
60 cd build
61 ../configure
62 $MAKE
63 test -f main.info
64 test ! -f ../main.info
65 test ! -f other.info
66 test -f ../other.info
67
68 cd ..
69 rm -rf build
70 ./configure
71 $MAKE
72 test -f main.info
73 test -f other.info
74
75 # Make sure stamp-vti is older that version.texi.
76 # (A common situation in a real tree).
77 # This is needed to test the "subtle" issue described below.
78 test -f stamp-vti
79 test -f version.texi
80 test -f stamp-1
81 test -f version2.texi
82 $sleep
83 touch stamp-vti
84 touch stamp-1
85
86 $MAKE distclean
87 test -f stamp-vti
88 test -f stamp-1
89 test -f version.texi
90 test -f version2.texi
91
92 mkdir build
93 cd build
94 ../configure
95 $MAKE
96 # other.info should not be rebuilt in the current directory, since
97 # it's up-to-date in $(srcdir).
98 # This can be caused by a subtle issue related to VPATH handling
99 # of version.texi (see also the comment in texi-vers.am): because
100 # stamp-vti is newer than version.texi, the 'version.texi: stamp-vti'
101 # rule is always triggered.  Still that's not a reason for 'make'
102 # to think 'version.texi' has been created...
103 test -f main.info
104 test ! -f other.info
105 $MAKE dvi
106 test -f main.dvi
107 test -f other.dvi
108
109 $MAKE distcheck
110
111 :