From: Akim Demaille Date: Wed, 22 Aug 2012 11:48:55 +0000 (+0200) Subject: tests: fix push-pull test X-Git-Tag: v2.6.3~31 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/ae62d0fc4f3a19f24ee798ee3d7efbc3468ad659 tests: fix push-pull test * tests/torture.at: %push-pull-parser is no longer supported. --- diff --git a/tests/torture.at b/tests/torture.at index 338c1648..414abaca 100644 --- a/tests/torture.at +++ b/tests/torture.at @@ -427,20 +427,20 @@ main (int argc, const char **argv) { int count; int status; -]m4_bmatch([$2], [%push-], +]m4_bmatch([$2], [api.push-pull both], [[ yypstate *ps = yypstate_new (); ]])[ for (count = 0; count < 2; ++count) { int new_status; yylval = yylval_init; -]m4_bmatch([$2], [%push-], +]m4_bmatch([$2], [api.push-pull both], [[ new_status = yypull_parse (ps); ]], [[ new_status = yyparse (); ]])[ assert (0 <= count || new_status == status); status = new_status; } -]m4_bmatch([$2], [%push-], +]m4_bmatch([$2], [api.push-pull both], [[ yypstate_delete (ps); ]])[ return status; }