Merge branch 'maint'
[platform/upstream/automake.git] / t / silent-yacc-headers.sh
1 #!/bin/sh
2 # Copyright (C) 2011-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 silent-rules mode for Yacc, when yacc-generated headers are
18 # involved (i.e., the '-d' option is in *YFLAGS).
19
20 required='cc yacc'
21 . ./defs || exit 1
22
23 mkdir sub
24
25 cat >>configure.ac <<'EOF'
26 AC_PROG_YACC
27 AC_PROG_CC
28 AC_OUTPUT
29 EOF
30
31 cat > Makefile.am <<'EOF'
32 # Need generic and non-generic rules.
33 AM_YFLAGS = -d
34 bin_PROGRAMS = foo bar
35 foo_SOURCES = parse.y
36 bar_SOURCES = $(foo_SOURCES)
37 bar_YFLAGS = $(AM_YFLAGS)
38 EOF
39
40 cat > parse.y <<'EOF'
41 %{
42 void yyerror (char *s) { return; }
43 int yylex (void) { return 0; }
44 int main (void) { return 0; }
45 %}
46 %token EOF
47 %%
48 fubar : 'f' 'o' 'o' 'b' 'a' 'r' EOF {};
49 EOF
50
51 $ACLOCAL
52 $AUTOMAKE --add-missing
53 $AUTOCONF
54
55 # Check that the expected non-generic rules has been truly generated.
56 # Otherwise, the coverage offered by this test will be weaker then
57 # expected and planned.
58 $FGREP 'bar-parse.c' Makefile.in
59 $FGREP '$(bar_YFLAGS)' Makefile.in
60
61 ./configure --enable-silent-rules
62
63 $MAKE >stdout || { cat stdout; exit 1; }
64 cat stdout
65
66 $EGREP ' (-c|-d|-o)' stdout && exit 1
67 $EGREP '(mv|ylwrap) ' stdout && exit 1
68
69 grep 'YACC  *parse\.c' stdout
70 grep 'updating  *parse\.h' stdout
71 grep 'YACC  *bar-parse\.c' stdout
72 grep 'updating  *bar-parse\.h' stdout
73
74 grep ' CC  *parse\.' stdout
75 grep ' CC  *bar-parse\.' stdout
76 grep 'CCLD  *foo' stdout
77 grep 'CCLD  *bar' stdout
78
79 # Check recovering from header removal.
80 rm -f parse.h bar-parse.h
81 $MAKE parse.h bar-parse.h >stdout || { cat stdout; exit 1; }
82 cat stdout
83
84 $EGREP ' (-c|-d|-o)' stdout && exit 1
85 $EGREP '(mv|ylwrap) ' stdout && exit 1
86
87 grep 'YACC  *parse\.c' stdout
88 grep 'updating  *parse\.h' stdout
89 grep 'YACC  *bar-parse\.c' stdout
90 grep 'updating  *bar-parse\.h' stdout
91
92 # Cleaning and then rebuilding with the same V flag (and without
93 # removing the generated sources in between) shouldn't trigger a
94 # different set of rules.
95 $MAKE clean
96
97 $MAKE >stdout || { cat stdout; exit 1; }
98 cat stdout
99
100 $EGREP ' (-c|-d|-o)' stdout && exit 1
101 $EGREP '(mv|ylwrap) ' stdout && exit 1
102
103 # Don't look for "YACC *.c" and "updating *.h", as yacc shouldn't
104 # have been re-run.
105 grep ' CC  *parse\.' stdout
106 grep ' CC  *bar-parse\.' stdout
107 grep 'CCLD  *foo' stdout
108 grep 'CCLD  *bar' stdout
109
110 # Check recovering from header removal.
111 rm -f parse.h bar-parse.h
112 $MAKE parse.h bar-parse.h >stdout || { cat stdout; exit 1; }
113 cat stdout
114
115 $EGREP ' (-c|-d|-o)' stdout && exit 1
116 $EGREP '(mv|ylwrap) ' stdout && exit 1
117
118 grep 'YACC  *parse\.c' stdout
119 grep 'updating  *parse\.h' stdout
120 grep 'YACC  *bar-parse\.c' stdout
121 grep 'updating  *bar-parse\.h' stdout
122
123 # Ensure a truly clean rebuild.
124 $MAKE maintainer-clean
125
126 ./configure --enable-silent-rules
127
128 $MAKE V=1 >stdout || { cat stdout; exit 1; }
129 cat stdout
130
131 grep ' -c ' stdout
132 grep ' -o ' stdout
133 grep ' -d ' stdout
134 grep 'ylwrap ' stdout
135
136 $EGREP '(YACC|CC|CCLD) ' stdout && exit 1
137
138 # Check recovering from header removal.
139 rm -f parse.h bar-parse.h
140 $MAKE V=1 parse.h bar-parse.h >stdout || { cat stdout; exit 1; }
141 cat stdout
142
143 grep ' -d ' stdout
144 grep 'ylwrap ' stdout
145
146 grep 'YACC' stdout && exit 1
147
148 # Cleaning and then rebuilding with the same V flag (and without
149 # removing the generated sources in between) shouldn't trigger a
150 # different set of rules.
151 $MAKE clean
152
153 $MAKE V=1 >stdout || { cat stdout; exit 1; }
154 cat stdout
155
156 # Don't look for ylwrap, as probably lex hasn't been re-run.
157 grep ' -c ' stdout
158 grep ' -o ' stdout
159
160 $EGREP '(YACC|CC|CCLD) ' stdout && exit 1
161
162 # Check recovering from header removal.
163 rm -f parse.h bar-parse.h
164 $MAKE V=1 parse.h bar-parse.h >stdout || { cat stdout; exit 1; }
165 cat stdout
166
167 grep ' -d ' stdout
168 grep 'ylwrap ' stdout
169
170 grep 'YACC' stdout && exit 1
171
172 :