tests: remove recipes that run tests with 'prove'
[platform/upstream/automake.git] / tests / silent-many-generic.test
1 #!/bin/sh
2 # Copyright (C) 2009-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, with many languages at once.
18 # This test partly overlaps with other silent*.test, but it serves as
19 # a stress test by using many different languages at once -- so don't
20 # remove this test script.
21 # This test should work with generic compilers; keep it in sync with
22 # sister test 'silent-many-gcc.test', which requires the GNU compilers
23 # and forces the use of gcc depmode.
24
25 required='cc c++ fortran fortran77 lex yacc'
26 . ./defs || Exit 1
27
28 # Avoids too much code duplication.
29 do_and_check_silent_build ()
30 {
31   case $1 in
32     --rebuild) rebuild=true;;
33             *) rebuild=false;;
34   esac
35
36   $MAKE >stdout || { cat stdout; Exit 1; }
37   cat stdout
38   # Avoid spurious failures with SunStudio Fortran compilers.
39   sed '/^NOTICE:/d' stdout > t
40   mv -f t stdout
41   cat stdout
42
43   $EGREP ' (-c|-o)' stdout && Exit 1
44   $EGREP '(mv|ylwrap) ' stdout && Exit 1
45
46   grep 'CXX .*foo1\.' stdout
47   grep 'CXX .*baz1\.' stdout
48   grep 'FC .*foo2\.'  stdout
49   grep 'FC .*baz2\.'  stdout
50   grep 'F77 .*foo3\.' stdout
51   grep 'F77 .*baz3\.' stdout
52   grep ' CC .*foo5\.' stdout
53   grep ' CC .*baz5\.' stdout
54   grep ' CC .*foo6\.' stdout
55   grep ' CC .*baz6\.' stdout
56
57   grep 'CXXLD .*foo' stdout
58   grep 'CCLD .*bar'  stdout
59   grep 'CXXLD .*baz' stdout
60   grep 'CCLD .*bla'  stdout
61
62   if $rebuild; then :; else
63     grep 'YACC .*foo6\.' stdout
64     grep 'YACC .*baz6\.' stdout
65     grep 'LEX .*foo5\.'  stdout
66     grep 'LEX .*baz5\.'  stdout
67   fi
68
69   unset rebuild
70 }
71
72 # Avoids too much code duplication.
73 do_and_check_verbose_build ()
74 {
75   case $1 in
76     --rebuild) rebuild=true;;
77             *) rebuild=false;;
78   esac
79
80   $MAKE V=1 >stdout || { cat stdout; Exit 1; }
81   cat stdout
82
83   grep ' -c ' stdout
84   grep ' -o ' stdout
85
86   $EGREP '(CC|CXX|FC|F77|LD) ' stdout && Exit 1
87
88   if $rebuild; then :; else
89     grep 'ylwrap ' stdout
90     $EGREP '(LEX|YACC) ' stdout && Exit 1
91   fi
92
93   unset rebuild
94 }
95
96 mkdir sub
97
98 cat >>configure.ac <<'EOF'
99 AM_SILENT_RULES
100 AM_PROG_CC_C_O
101 AC_PROG_F77
102 AC_PROG_FC
103 AC_PROG_LEX
104 AC_PROG_YACC
105 AC_PROG_CXX
106
107 # FIXME: remove this hack once the requirements c++, fortran and fortran77
108 # are implemented correctly.
109 test -n "`echo $CXX`" || AC_MSG_ERROR([C++ compiler not found], [77])
110 test -n "`echo $FC`"  || AC_MSG_ERROR([Fortran compiler not found], [77])
111 test -n "`echo $F77`" || AC_MSG_ERROR([Fortran 77 compiler not found], [77])
112
113 # The SunStudio C++ compiler is unfortunately named 'sunCC' (or even just
114 # 'CC', yuck!); similarly and the Portland group C++ compiler is named
115 # 'pgCC'.  This can cause problems with our grepping checks on the output
116 # from make.  Avoid these problems by invoking a wrapper script, as
117 # filtering the make output proved too fragile.
118 case " $CXX " in
119   *'CC '*)
120     AC_MSG_WARN([the C++ compiler '$CXX' name ends with 'CC'])
121     AC_MSG_WARN([it will be wrapped with the custom script 'am--cxx'])
122     echo '#!/bin/sh' > bin/am--cxx
123     echo 'PATH=$saved_PATH; export PATH' >> bin/am--cxx
124     echo "case \$# in" >> bin/am--cxx
125     echo "  0) exec $CXX ;;" >> bin/am--cxx
126     echo "  *) exec $CXX \"\$@\" ;;" >> bin/am--cxx
127     echo "esac" >> bin/am--cxx
128     chmod a+x bin/am--cxx
129     CXX=am--cxx
130 esac
131
132 AC_CONFIG_FILES([sub/Makefile])
133 AC_OUTPUT
134 EOF
135
136 cat > Makefile.am <<'EOF'
137 # Need generic and non-generic rules.
138 bin_PROGRAMS = foo bar fo2
139 bar_CFLAGS = $(AM_CFLAGS)
140 foo_SOURCES = foo1.cpp foo2.f90 foo3.f foo5.l foo6.y
141 fo2_SOURCES = $(foo_SOURCES)
142 fo2_CPPFLAGS = $(AM_CPPFLAGS)
143 fo2_FFLAGS = $(AM_FFLAGS)
144 fo2_FCFLAGS = $(AM_FCFLAGS)
145 fo2_YFLAGS = -v
146 fo2_LFLAGS = -n
147 SUBDIRS = sub
148 AM_YFLAGS = -d
149 LDADD = $(LEXLIB)
150 BUILT_SOURCES = foo6.h
151 EOF
152
153 cat > sub/Makefile.am <<'EOF'
154 AUTOMAKE_OPTIONS = subdir-objects
155 # Need generic and non-generic rules.
156 bin_PROGRAMS = baz bla ba2
157 bla_CFLAGS = $(AM_CFLAGS)
158 baz_SOURCES = baz1.cpp baz2.f90 baz3.f baz5.l baz6.y
159 ba2_SOURCES = $(baz_SOURCES)
160 ba2_CPPFLAGS = $(AM_CPPFLAGS)
161 ba2_FFLAGS = $(AM_FFLAGS)
162 ba2_FCFLAGS = $(AM_FCFLAGS)
163 ba2_YFLAGS = -v
164 ba2_LFLAGS = -n
165 AM_YFLAGS = -d
166 LDADD = $(LEXLIB)
167 BUILT_SOURCES = baz6.h
168 EOF
169
170 cat > foo1.cpp <<'EOF'
171 int main ()
172 {
173   return 0;
174 }
175 EOF
176 cat > foo2.f90 <<'EOF'
177       subroutine foo2
178       return
179       end
180 EOF
181 cat > foo3.f <<'EOF'
182       subroutine foo3
183       return
184       end
185 EOF
186 cat > foo5.l <<'EOF'
187 %{
188 #define YY_NO_UNISTD_H 1
189 %}
190 %%
191 "END"   return EOF;
192 .
193 %%
194 /* Avoid possible link errors. */
195 int yywrap (void)
196 {
197   return 1;
198 }
199 EOF
200 cat > foo6.y <<'EOF'
201 %{
202 void yyerror (char *s) {}
203 %}
204 %token EOF
205 %%
206 fubar : 'f' 'o' 'o' 'b' 'a' 'r' EOF {};
207 EOF
208 cp foo1.cpp bar.c
209 cp foo1.cpp sub/baz.c
210 cp foo1.cpp sub/bla.c
211 cp foo1.cpp sub/baz1.cpp
212 cp foo2.f90 sub/baz2.f90
213 cp foo3.f sub/baz3.f
214 cp foo5.l sub/baz5.l
215 cp foo6.y sub/baz6.y
216
217 mkdir bin
218 saved_PATH=$PATH; export saved_PATH
219 PATH=`pwd`/bin$PATH_SEPARATOR$PATH; export PATH
220
221 $ACLOCAL
222 $AUTOMAKE --add-missing
223 $AUTOCONF
224
225 # Ensure per-target rules are used, to ensure their coverage below.
226 # (We do not do an exhaustive check, that wouldn't be practical).
227 $FGREP 'bar-bar.o' Makefile.in
228 $FGREP 'fo2-foo5.c' Makefile.in
229 $FGREP 'fo2-foo6.c' Makefile.in
230
231 # Force dependency tracking explicitly, so that slow dependency
232 # extractors are not rejected.  Try also with dependency tracking
233 # explicitly disabled.
234 for config_args in \
235   --enable-dependency-tracking --disable-dependency-tracking
236 do
237
238   ./configure $config_args --enable-silent-rules
239
240   do_and_check_silent_build
241   # Cleaning and then rebuilding with the same V flag (and without
242   # removing the generated sources in between) shouldn't trigger a
243   # different set of rules.
244   $MAKE clean
245   do_and_check_silent_build --rebuild
246
247   # Ensure a clean rebuild.
248   $MAKE clean
249   # This is required, since these files are not removed by 'make clean'
250   # (as dictated by the GNU Coding Standards).
251   rm -f *foo5.c *foo6.[ch] sub/*baz5.c sub/*baz6.[ch]
252
253   do_and_check_verbose_build
254   # Cleaning and then rebuilding with the same V flag (and without
255   # removing the generated sources in between) shouldn't trigger a
256   # different set of rules.
257   $MAKE clean
258   do_and_check_verbose_build --rebuild
259
260   # Ensure a clean reconfiguration/rebuild.
261   $MAKE clean
262   $MAKE maintainer-clean
263
264 done
265
266 :