From: Akim Demaille Date: Tue, 29 Apr 2003 08:41:13 +0000 (+0000) Subject: * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet) X-Git-Tag: BISON-2_0~320 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/211074caca8d7990cefa5e9a3dfcf4397385d372?ds=inline * 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. --- diff --git a/ChangeLog b/ChangeLog index 668e85f3..c0fe6896 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-04-29 Akim Demaille + + * 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 * data/yacc.c: (b4_lex_param): Corrected for the case where diff --git a/tests/calc.at b/tests/calc.at index a6192142..81af81c3 100644 --- a/tests/calc.at +++ b/tests/calc.at @@ -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])