tests: add few missing 'cc' and 'c++' requirements
[platform/upstream/automake.git] / t / yacc-depend2.sh
1 #! /bin/sh
2 # Copyright (C) 2001-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 # Make sure depcomp does not needlessly update headers and objects
18 # for yacc rules.  This test still fails with FreeBSD make (but passes
19 # with NetBSD make).
20
21 required='cc yacc'
22 . ./defs || Exit 1
23
24 cat >> configure.ac << 'END'
25 AC_PROG_CC
26 AC_PROG_YACC
27 AC_OUTPUT
28 END
29
30 cat > Makefile.am << 'END'
31 bin_PROGRAMS = foo
32 AM_YFLAGS = -d
33 foo_SOURCES = foo.y main.c
34 BUILT_SOURCES = foo.h
35 .PHONY: debug-info test-time-unchanged test-time-changed
36 debug-info:
37         ls -l
38         stat *.[ch] *.$(OBJEXT) my-timestamp || :
39 test-time-unchanged: debug-info
40         test `ls -1t main.$(OBJEXT) my-timestamp | sed 1q` = my-timestamp
41 test-time-changed: debug-info
42         test `ls -1t main.$(OBJEXT) my-timestamp | sed 1q` = main.$(OBJEXT)
43 END
44
45 cat > foo.y << 'END'
46 %{
47 int yylex () { return 0; }
48 void yyerror (char *s) { return; }
49 %}
50 %token TOKEN
51 %%
52 foobar : 'f' 'o' 'o' 'b' 'a' 'r' {};
53 END
54
55
56 cat > main.c << 'END'
57 #include "foo.h"
58 int main(void)
59 {
60   return yyparse ();
61 }
62 END
63
64 $ACLOCAL
65 $AUTOCONF
66 $AUTOMAKE -a
67
68 # Try to enable dependency tracking if possible, even if that means
69 # using slow dependency extractors.
70 ./configure --enable-dependency-tracking
71 $MAKE
72 ls -l # For debugging.
73
74 $sleep
75 : > my-timestamp
76 $sleep
77 touch foo.y
78 $MAKE
79 $MAKE test-time-unchanged
80 $sleep
81 sed 's/TOKEN/TEKON/g' foo.y > t
82 mv -f t foo.y
83 $MAKE
84 $MAKE test-time-changed
85
86 :