Merge branch 'maint'
[platform/upstream/automake.git] / t / yacc-bison-skeleton-cxx.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 # Test to make sure bison + bison's C++ skeleton + C++ works.
18 # For Automake bug#7648 and PR automake/491.
19
20 required='c++ bison'
21 . ./defs || exit 1
22
23 cat >> configure.ac << 'END'
24 AC_PROG_CXX
25 AC_PROG_YACC
26 AC_OUTPUT
27 END
28
29 cat > Makefile.am << 'END'
30 bin_PROGRAMS = zardoz
31 zardoz_SOURCES = zardoz.yy foo.cc
32
33 # This is required even with %defines in zardoz.yy.
34 AM_YFLAGS = -d
35
36 BUILT_SOURCES = zardoz.hh
37 EXTRA_DIST = stack.hh location.hh position.hh
38 END
39
40 cat > zardoz.yy << 'END'
41 %skeleton "lalr1.cc"
42 %defines
43
44 %{
45 #define YYSTYPE int
46 int yylex(YYSTYPE* yylval_param);
47 %}
48
49 %%
50 start :        /* empty */
51 %%
52
53 int
54 yylex(YYSTYPE*)
55 {
56     return 0;
57 }
58
59 void
60 yy::parser::error(const yy::parser::location_type&, const std::string& m)
61 {
62     return;
63 }
64 END
65
66 cat > foo.cc << 'END'
67 #include "zardoz.hh"
68
69 using namespace std;
70
71 int
72 main(int argc, char** argv)
73 {
74   yy::parser my_parser;
75   return my_parser.parse ();
76 }
77 END
78
79 $ACLOCAL
80 $AUTOCONF
81 $AUTOMAKE -a
82
83 # Try a VPATH build first.
84 mkdir build
85 cd build
86 ../configure YACC='bison -y'
87 $MAKE
88 cd ..
89
90 # Now try an in-tree build.
91 ./configure YACC='bison -y'
92 $MAKE
93
94 # Check that distribution is self-contained, and do not require
95 # bison to be built.
96 env YACC=false DISTCHECK_CONFIGURE_FLAGS='YACC=false' $MAKE -e distcheck
97
98 :