* src/conflicts.c (conflicts_print): Don't complain at all when

there are no reduce/reduce conflicts, and as many shift/reduce
conflicts as expected.
* tests/regression.at (%expect right): Adjust.
This commit is contained in:
Akim Demaille
2001-11-26 09:18:40 +00:00
parent aead559e00
commit 1b9a8440cd
5 changed files with 42 additions and 25 deletions

View File

@@ -275,9 +275,7 @@ AT_DATA([input.y],
exp: exp OP exp | NUM;
]])
AT_CHECK([bison input.y -o input.c], 0, [],
[input.y contains 1 shift/reduce conflict.
])
AT_CHECK([bison input.y -o input.c], 0)
AT_CLEANUP