test harness: improve catching of usage errors in script 'test-driver'
[platform/upstream/automake.git] / t / cond6.sh
1 #! /bin/sh
2 # Copyright (C) 1998-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 an odd conditional bug.  Report from Matt Leach.
18
19 . test-init.sh
20
21 echo 'AM_CONDITIONAL([FOO], [true])' >> configure.ac
22
23 cat > Makefile.am << 'END'
24 if FOO
25
26 helpdir = $(prefix)/Help
27 # The continuation line below must start with a Tab to see the bug.
28 help_DATA = a b c d e \
29         f g h
30
31 else
32
33 helpdir = $(prefix)/help
34 help_DATA = foo
35
36 endif
37
38 a b c d e f g h:
39         touch $@
40
41 .PHONY: test
42 test:
43         is $(help_DATA) == a b c d e f g h
44 END
45
46
47 # Older versions of this test checked that automake could process the above
48 # Makefile.am even with no AC_OUTPUT in configure.  So continue to do this
49 # check, for completeness.
50 $ACLOCAL
51 $AUTOMAKE
52
53 rm -rf autom4te*.cache
54
55 echo AC_OUTPUT >> configure.ac
56 touch aclocal.m4 # Avoid unnecessary firing the remake rules.
57 $AUTOCONF
58 $AUTOMAKE Makefile
59
60 ./configure --prefix="$(pwd)/_inst"
61
62 $MAKE test
63
64 $MAKE install
65 for x in a b c d e f g h; do
66   test -f _inst/Help/$x
67 done
68
69 :