output: capitalize State

* src/print.c (print_state): Here.
* tests/conflicts.at, tests/existing.at, tests/local.at, tests/reduce.at,
tests/regression.at, tests/sets.at: Adjust.
This commit is contained in:
Theophile Ranquet
2012-10-18 12:02:05 +00:00
parent bfdcc3a0b2
commit d42fe46ec3
7 changed files with 177 additions and 177 deletions

View File

@@ -293,7 +293,7 @@ $@2 (9)
on left: 3, on right: 4
state 0
State 0
0 $accept: . expr $end
@@ -305,7 +305,7 @@ state 0
$@2 go to state 3
state 1
State 1
2 expr: 'a' . $@1 'b'
@@ -314,42 +314,42 @@ state 1
$@1 go to state 4
state 2
State 2
0 $accept: expr . $end
$end shift, and go to state 5
state 3
State 3
4 expr: $@2 . 'c'
'c' shift, and go to state 6
state 4
State 4
2 expr: 'a' $@1 . 'b'
'b' shift, and go to state 7
state 5
State 5
0 $accept: expr $end .
$default accept
state 6
State 6
4 expr: $@2 'c' .
$default reduce using rule 4 (expr)
state 7
State 7
2 expr: 'a' $@1 'b' .
@@ -598,7 +598,7 @@ $@1 (11)
on left: 4, on right: 5
state 0
State 0
0 $accept: . CONST_DEC_PART $end
@@ -610,14 +610,14 @@ state 0
$@1 go to state 4
state 1
State 1
0 $accept: CONST_DEC_PART . $end
$end shift, and go to state 5
state 2
State 2
1 CONST_DEC_PART: CONST_DEC_LIST .
3 CONST_DEC_LIST: CONST_DEC_LIST . CONST_DEC
@@ -629,56 +629,56 @@ state 2
$@1 go to state 4
state 3
State 3
2 CONST_DEC_LIST: CONST_DEC .
$default reduce using rule 2 (CONST_DEC_LIST)
state 4
State 4
5 CONST_DEC: $@1 . undef_id_tok '=' const_id_tok ';'
undef_id_tok shift, and go to state 7
state 5
State 5
0 $accept: CONST_DEC_PART $end .
$default accept
state 6
State 6
3 CONST_DEC_LIST: CONST_DEC_LIST CONST_DEC .
$default reduce using rule 3 (CONST_DEC_LIST)
state 7
State 7
5 CONST_DEC: $@1 undef_id_tok . '=' const_id_tok ';'
'=' shift, and go to state 8
state 8
State 8
5 CONST_DEC: $@1 undef_id_tok '=' . const_id_tok ';'
const_id_tok shift, and go to state 9
state 9
State 9
5 CONST_DEC: $@1 undef_id_tok '=' const_id_tok . ';'
';' shift, and go to state 10
state 10
State 10
5 CONST_DEC: $@1 undef_id_tok '=' const_id_tok ';' .
@@ -1125,8 +1125,8 @@ a: 'a' ;
]])
AT_BISON_CHECK([[--report=all input.y]])
AT_CHECK([[sed -n '/^state 1$/,/^state 2$/p' input.output]], [[0]],
[[state 1
AT_CHECK([[sed -n '/^State 1$/,/^State 2$/p' input.output]], [[0]],
[[State 1
2 start: 'a' . a 'a'
3 a: . 'a'
@@ -1139,7 +1139,7 @@ AT_CHECK([[sed -n '/^state 1$/,/^state 2$/p' input.output]], [[0]],
a go to state 5
state 2
State 2
]])
AT_CLEANUP