* tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)

with %pure-parser and %locations to exercise the patch from Yakov
Markovitch below.
This commit is contained in:
Akim Demaille
2003-04-29 08:41:13 +00:00
parent 2f924dd373
commit 211074caca
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2003-04-29 Akim Demaille <akim@epita.fr>
* tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
with %pure-parser and %locations to exercise the patch from Yakov
Markovitch below.
2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
* data/yacc.c: (b4_lex_param): Corrected for the case where

View File

@@ -536,6 +536,7 @@ AT_CHECK_CALC_LALR([%verbose])
AT_CHECK_CALC_LALR([%yacc])
AT_CHECK_CALC_LALR([%error-verbose])
AT_CHECK_CALC_LALR([%pure-parser %locations])
AT_CHECK_CALC_LALR([%error-verbose %locations])
AT_CHECK_CALC_LALR([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])
@@ -571,6 +572,7 @@ AT_CHECK_CALC_GLR([%verbose])
AT_CHECK_CALC_GLR([%yacc])
AT_CHECK_CALC_GLR([%error-verbose])
AT_CHECK_CALC_GLR([%pure-parser %locations])
AT_CHECK_CALC_GLR([%error-verbose %locations])
AT_CHECK_CALC_GLR([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])
@@ -607,6 +609,7 @@ AT_CHECK_CALC_LALR1_CC([%defines])
# AT_CHECK_CALC_LALR1_CC([%yacc])
# AT_CHECK_CALC_LALR1_CC([%error-verbose])
# AT_CHECK_CALC_LALR1_CC([%pure-parser %locations])
# AT_CHECK_CALC_LALR1_CC([%error-verbose %locations])
AT_CHECK_CALC_LALR1_CC([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])