summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2021-09-08 08:18:35 +0200
committerAkim Demaille <akim.demaille@gmail.com>2021-09-12 12:03:58 +0200
commitca96df89b2c322579eda1fe4bc6486259f189f2d (patch)
tree123063183ea364e6b1c1c7e3c124f36400623628 /tests
parent2142e5915576b124d76e3acecd34e4bbf538d2fe (diff)
downloadbison-ca96df89b2c322579eda1fe4bc6486259f189f2d.tar.gz
glr2.cc: don't publish YY_EXCEPTIONS
We don't need them in the header file. * data/skeletons/glr2.cc (YY_EXCEPTIONS): Define only in the implementation file. * tests/headers.at (Several Parsers): Also check glr2.cc.
Diffstat (limited to 'tests')
-rw-r--r--tests/headers.at8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/headers.at b/tests/headers.at
index 57a5591f..ab2e636b 100644
--- a/tests/headers.at
+++ b/tests/headers.at
@@ -241,6 +241,7 @@ exp:
| 'x' '9' { printf ("x9\n"); }
| 'x' 'a' { printf ("xa\n"); }
| 'x' 'b' { printf ("xb\n"); }
+| 'x' 'c' { printf ("xc\n"); }
;
%%
@@ -279,6 +280,7 @@ extern "C"
#include "x9.hh"
#include "xa.hh"
#include "xb.hh"
+#include "xc.hh"
#define RUN(S) \
do { \
@@ -305,6 +307,8 @@ main (void)
RUN(pa.parse());
xb_::parser pb;
RUN(pb.parse());
+ xc_::parser pc;
+ RUN(pc.parse());
return 0;
}
]])# main.cc
@@ -320,7 +324,7 @@ AT_TEST([x8], [%define api.pure %define api.push-pull both])
AT_TEST([x9], [%locations %code requires {#include "location.hh"} %define api.location.type {::x5_::location} %debug %language "c++"])
AT_TEST([xa], [%locations %code requires {#include "location.hh"} %define api.location.type {::x5_::location} %language "c++" %define api.value.type variant])
AT_TEST([xb], [%locations %define api.location.file none %language "c++" %define api.value.type variant])
-#AT_TEST([x5], [%locations %language "c++" %glr-parser])
+AT_TEST([xc], [%locations %code requires {#include "location.hh"} %define api.location.type {::x5_::location} %skeleton "glr2.cc"])
# Check that api.prefix works properly:
#
@@ -377,7 +381,7 @@ AT_PERL_CHECK([[-n -0777 -e '
# Do this late, so that other checks have been performed.
AT_SKIP_IF_CANNOT_LINK_C_AND_CXX
-AT_COMPILE_CXX([parser], [[x[1-9a-b].o -DCC_IS_CXX=$CC_IS_CXX main.cc]])
+AT_COMPILE_CXX([parser], [[x[1-9a-c].o -DCC_IS_CXX=$CC_IS_CXX main.cc]])
AT_PARSER_CHECK([parser], [0], [[expout]])
m4_popdef([AT_TEST])