source: trunk/essentials/sys-devel/automake-1.10/tests/yacc6.test

Last change on this file was 3147, checked in by bird, 18 years ago

automake 1.10

File size: 2.3 KB
Line 
1#! /bin/sh
2# Copyright (C) 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
3#
4# This file is part of GNU Automake.
5#
6# GNU Automake is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option)
9# any later version.
10#
11# GNU Automake is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with Automake; see the file COPYING. If not, write to
18# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19# Boston, MA 02110-1301, USA.
20
21# Test to make sure ylwrap put in right location.
22# Report from Tim Van Holder.
23# Also make sure depcomp does not needlessly update headers.
24# Report from Paolo Bonzini.
25
26required='gcc bison GNUmake'
27. ./defs || exit 1
28
29set -e
30
31cat > configure.in << 'END'
32AC_INIT([yacc6], [1.0])
33AC_CONFIG_AUX_DIR([aux1])
34AM_INIT_AUTOMAKE
35AC_CONFIG_FILES([Makefile])
36AC_PROG_CC
37AM_PROG_CC_C_O
38AC_PROG_YACC
39AC_CONFIG_FILES([sub/Makefile])
40AC_OUTPUT
41END
42
43cat > Makefile.am << 'END'
44SUBDIRS = sub
45
46test-time-unchanged:
47 test `ls -1t sub/main.$(OBJEXT) z | sed 1q` = z
48test-time-changed:
49 test `ls -1t sub/main.$(OBJEXT) z | sed 1q` = sub/main.$(OBJEXT)
50END
51
52mkdir aux1 sub
53
54cat > sub/Makefile.am << 'END'
55bin_PROGRAMS = foo bar
56AM_YFLAGS = -d
57foo_SOURCES = foo.y main.c
58foo_CPPFLAGS = -DFOO
59bar_SOURCES = bar.y main.c
60END
61
62cat > sub/foo.y << 'END'
63%{
64int yylex () {return 0;}
65void yyerror (char *s) {}
66%}
67%token TOKEN
68%%
69foobar : 'f' 'o' 'o' 'b' 'a' 'r' {};
70END
71
72cp sub/foo.y sub/bar.y
73
74cat >sub/main.c <<'EOF'
75#ifdef FOO
76# include "foo.h"
77#else
78# include "bar.h"
79#endif
80
81int
82main()
83{
84 return 0;
85}
86EOF
87
88$ACLOCAL
89$AUTOCONF
90$AUTOMAKE -a
91test -f aux1/ylwrap
92test ! -f ylwrap
93test ! -f sub/ylwrap
94$FGREP '(top_srcdir)/aux1/ylwrap' sub/Makefile.in
95./configure
96$MAKE
97grep '#.*line.*foo.y' sub/foo.c
98grep '#.*line.*bar.y' sub/bar.c
99
100$sleep
101: > z
102$sleep
103touch sub/bar.y
104$MAKE
105$MAKE test-time-unchanged
106$sleep
107sed s/TOKEN/TEKON/g sub/bar.y >sub/bar.yt
108mv -f sub/bar.yt sub/bar.y
109$MAKE
110$MAKE test-time-changed
Note: See TracBrowser for help on using the repository browser.