fixup: list of yacc/lex tests was botched
[platform/upstream/automake.git] / tests / yacc-dist-nobuild.test
1 #! /bin/sh
2 # Copyright (C) 2011 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 distributed Yacc-generated parsers are not uselessly
18 # remade from an unpacked distributed tarball.
19 # See automake bug#7884.
20
21 required=yacc
22 . ./defs || Exit 1
23
24 set -e
25
26 cat >> configure.in << 'END'
27 AC_PROG_CC
28 AC_PROG_YACC
29 AC_OUTPUT
30 END
31
32 cat > Makefile.am << 'END'
33 bin_PROGRAMS = foobar zardoz
34 foobar_SOURCES = parse.y main.c
35 zardoz_SOURCES = $(foobar_SOURCES)
36 zardoz_YFLAGS = -d
37 END
38
39 cat > parse.y << 'END'
40 %{
41 int yylex () { return 0; }
42 void yyerror (char *s) {}
43 %}
44 %%
45 foobar : 'f' 'o' 'o' 'b' 'a' 'r' {};
46 END
47
48 cat > main.c << 'END'
49 int main () { return 0; }
50 END
51
52 $ACLOCAL
53 $AUTOCONF
54 $AUTOMAKE -a
55
56 ./configure
57 $MAKE
58
59 $MAKE distdir
60 chmod -R a-w $distdir
61
62 mkdir bin
63 cat > bin/yacc <<'END'
64 #!/bin/sh
65 echo "$0 invoked, shouldn't happen!" >&2
66 exit 1
67 END
68 cp bin/yacc bin/bison
69 chmod a+x bin/yacc bin/bison
70 PATH=`pwd`/bin$PATH_SEPARATOR$PATH
71
72 YACC=yacc BISON=bison
73 export YACC BISON
74
75 mkdir build
76 cd build
77 ../$distdir/configure
78 $MAKE
79
80 # Sanity check.
81 chmod u+w ../$distdir
82 rm -f ../$distdir/parse.c
83 chmod a-w ../$distdir
84 $MAKE >out 2>&1 && { cat out; Exit 1; }
85 cat out
86 $FGREP parse.c out
87
88 :