test harness: improve catching of usage errors in script 'test-driver'
[platform/upstream/automake.git] / t / subpkg-yacc.sh
1 #! /bin/sh
2 # Copyright (C) 2002-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 # Check that ylwrap is installed properly, and $(YLWRAP) us defined
18 # properly, when a subpackage is involved.
19
20 required='cc yacc'
21 . test-init.sh
22
23 cat >>configure.ac <<'END'
24 AC_PROG_CC
25 AC_CONFIG_SUBDIRS([lib])
26 AC_OUTPUT
27 END
28
29 cat >Makefile.am <<'EOF'
30 SUBDIRS = lib
31 bin_PROGRAMS = MU
32 MU_LDADD = lib/liblib.a
33 # It's ok to override distdir.
34 distdir = subpack-1
35 # Remove a file created by rules in subdir lib.
36 CLEANFILES = lib-dist-hook-has-run
37 EOF
38
39 cat >MU.c <<'EOF'
40 int lib (void);
41 int main (void)
42 {
43   return lib ();
44 }
45 EOF
46
47 mkdir lib
48 mkdir lib/src
49
50 cat >lib/configure.ac <<'EOF'
51 AC_INIT([lib], [2.3])
52 AM_INIT_AUTOMAKE([subdir-objects])
53 AC_PROG_RANLIB
54 AC_PROG_YACC
55 dnl This comes after YACC and RANLIB checks, deliberately.
56 AC_PROG_CC
57 AM_PROG_AR
58 AC_CONFIG_HEADERS([config.h:config.hin])
59 AC_CONFIG_FILES([Makefile])
60 AC_OUTPUT
61 EOF
62
63 cat >lib/Makefile.am <<'EOF'
64 noinst_LIBRARIES = liblib.a
65 liblib_a_SOURCES = src/x.c foo.y
66 EXTRA_liblib_a_SOURCES = bar.y
67
68 dist-hook:
69         test -d $(top_distdir)
70         test -d $(distdir)
71         find $(top_distdir) $(distdir) ;: For debugging.
72         test -f $(top_distdir)/MU.c
73         test ! -f $(distdir)/MU.c
74         for suf in y c; do \
75           for name in foo bar; do \
76             test -f $(distdir)/$$name.$$suf || exit 1; \
77             test ! -f $(top_distdir)/$$name.$$suf || exit 1; \
78           done; \
79         done
80         test -f $(distdir)/foo.y
81         test ! -f $(top_distdir)/foo.y
82         test -f $(distdir)/src/x.c
83         test ! -f $(top_distdir)/src/x.c
84         test -f $(YLWRAP)
85         : > $(top_builddir)/../lib-dist-hook-has-run
86 EOF
87
88 cat > lib/foo.y << 'END'
89 %{
90 int yylex (void) { return 0; }
91 void yyerror (char *s) {}
92 %}
93 %%
94 foobar : 'f' 'o' 'o' 'b' 'a' 'r' {};
95 END
96
97 cp lib/foo.y lib/bar.y
98
99 cat >lib/src/x.c <<'EOF'
100 #include <config.h>
101 int lib (void)
102 {
103   return 0;
104 }
105 EOF
106
107 $ACLOCAL
108 $AUTOCONF
109 $AUTOMAKE -Wno-override
110
111 cd lib
112 $ACLOCAL
113 $AUTOCONF
114 $AUTOHEADER
115 $AUTOMAKE -Wno-override --add-missing
116 cd ..
117
118 ./configure
119
120 $MAKE dist
121 test -f lib-dist-hook-has-run
122 test -f subpack-1.tar.gz
123 test ! -e subpack-1 # Make sure "dist" cleans up after itself.
124
125 rm -f lib-dist-hook-has-run subpack-1.tar.gz
126
127 yl_distcheck
128
129 :