* 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:32:32 +00:00
parent b83f0407c6
commit a034c8b849
3 changed files with 37 additions and 24 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