]> git.saurik.com Git - bison.git/blobdiff - tests/conflicts.at
* src/closure.c (print_fderives): Use rule_rhs_print.
[bison.git] / tests / conflicts.at
index 6d5467838d9a3d656fe44aff28e2e9c8ae4b8b74..4694014948e5f9ecd1b2fe9942eb35819218fb19 100644 (file)
@@ -41,6 +41,7 @@ AT_CHECK([bison input.y -o input.c])
 
 AT_CLEANUP
 
+
 ## ------------------- ##
 ## %nonassoc and eof.  ##
 ## ------------------- ##
@@ -101,22 +102,22 @@ main (int argc, const char *argv[])
 
 # Specify the output files to avoid problems on different file systems.
 AT_CHECK([bison input.y -o input.c])
-AT_CHECK([$CC $CFLAGS $CPPFLAGS input.c -o input], 0, [], [ignore])
+AT_COMPILE([input])
 
-AT_CHECK([./input '0<0'])
+AT_PARSER_CHECK([./input '0<0'])
 # FIXME: This is an actual bug, but a new one, in the sense that
 # no one has ever spotted it!  The messages are *wrong*: there should
 # be nothing there, it should be expected eof.
-AT_CHECK([./input '0<0<0'], [1], [],
+AT_PARSER_CHECK([./input '0<0<0'], [1], [],
          [parse error, unexpected '<', expecting '<' or '>'
 ])
 
-AT_CHECK([./input '0>0'])
-AT_CHECK([./input '0>0>0'], [1], [],
+AT_PARSER_CHECK([./input '0>0'])
+AT_PARSER_CHECK([./input '0>0>0'], [1], [],
          [parse error, unexpected '>', expecting '<' or '>'
 ])
 
-AT_CHECK([./input '0<0>0'], [1], [],
+AT_PARSER_CHECK([./input '0<0>0'], [1], [],
          [parse error, unexpected '>', expecting '<' or '>'
 ])
 
@@ -130,6 +131,8 @@ AT_CLEANUP
 
 AT_SETUP([Unresolved SR Conflicts])
 
+AT_KEYWORDS([report])
+
 AT_DATA([input.y],
 [[%token NUM OP
 %%
@@ -147,10 +150,10 @@ AT_CHECK([cat input.output], [],
 
 Grammar
 
-  Number, Line, Rule
-    0   3 $axiom -> exp $
-    1   3 exp -> exp OP exp
-    2   3 exp -> NUM
+    0 $axiom: exp $
+
+    1 exp: exp OP exp
+    2    | NUM
 
 
 Terminals, with rules where they appear
@@ -171,93 +174,89 @@ exp (6)
 
 state 0
 
-    $axiom  ->  . exp $   (rule 0)
-    exp  ->  . exp OP exp   (rule 1)
-    exp  ->  . NUM   (rule 2)
+    0 $axiom: . exp $
+    1 exp: . exp OP exp
+    2    | . NUM
 
-    NUM        shift, and go to state 1
-
-    exp        go to state 2
+    NUM  shift, and go to state 1
 
+    exp  go to state 2
 
 
 state 1
 
-    exp  ->  NUM .   (rule 2)
-
-    $default   reduce using rule 2 (exp)
+    2 exp: NUM .
 
+    $default  reduce using rule 2 (exp)
 
 
 state 2
 
-    $axiom  ->  exp . $   (rule 0)
-    exp  ->  exp . OP exp   (rule 1)
-
-    $          shift, and go to state 3
-    OP         shift, and go to state 4
+    0 $axiom: exp . $
+    1 exp: exp . OP exp
 
+    $   shift, and go to state 3
+    OP  shift, and go to state 4
 
 
 state 3
 
-    $axiom  ->  exp $ .   (rule 0)
+    0 $axiom: exp $ .
 
     $default   accept
 
 
 state 4
 
-    exp  ->  . exp OP exp   (rule 1)
-    exp  ->  exp OP . exp   (rule 1)
-    exp  ->  . NUM   (rule 2)
-
-    NUM        shift, and go to state 1
+    1 exp: . exp OP exp
+    1    | exp OP . exp
+    2    | . NUM
 
-    exp        go to state 5
+    NUM  shift, and go to state 1
 
+    exp  go to state 5
 
 
 state 5
 
-    exp  ->  exp . OP exp  [$, OP]   (rule 1)
-    exp  ->  exp OP exp .  [$, OP]   (rule 1)
-
-    OP         shift, and go to state 4
-
-    OP         [reduce using rule 1 (exp)]
-    $default   reduce using rule 1 (exp)
-
+    1 exp: exp . OP exp  [$, OP]
+    1    | exp OP exp .  [$, OP]
 
+    OP  shift, and go to state 4
 
+    OP        [reduce using rule 1 (exp)]
+    $default  reduce using rule 1 (exp)
 ]])
 
 AT_CLEANUP
 
 
-## --------------------- ##
-## Solved SR Conflicts.  ##
-## --------------------- ##
 
-AT_SETUP([Solved SR Conflicts])
+## ----------------------- ##
+## Resolved SR Conflicts.  ##
+## ----------------------- ##
+
+AT_SETUP([Resolved SR Conflicts])
+
+AT_KEYWORDS([report])
 
 AT_DATA([input.y],
 [[%token NUM OP
-%right OP
+%left OP
 %%
 exp: exp OP exp | NUM;
 ]])
 
-AT_CHECK([bison input.y -o input.c --report=all], 0, [], [])
+AT_CHECK([bison input.y -o input.c --report=all])
 
 # Check the contents of the report.
 AT_CHECK([cat input.output], [],
 [[Grammar
 
-  Number, Line, Rule
-    0   4 $axiom -> exp $
-    1   4 exp -> exp OP exp
-    2   4 exp -> NUM
+    0 $axiom: exp $
+
+    1 exp: exp OP exp
+    2    | NUM
 
 
 Terminals, with rules where they appear
@@ -278,65 +277,188 @@ exp (6)
 
 state 0
 
-    $axiom  ->  . exp $   (rule 0)
-    exp  ->  . exp OP exp   (rule 1)
-    exp  ->  . NUM   (rule 2)
+    0 $axiom: . exp $
+    1 exp: . exp OP exp
+    2    | . NUM
 
-    NUM        shift, and go to state 1
-
-    exp        go to state 2
+    NUM  shift, and go to state 1
 
+    exp  go to state 2
 
 
 state 1
 
-    exp  ->  NUM .   (rule 2)
-
-    $default   reduce using rule 2 (exp)
+    2 exp: NUM .
 
+    $default  reduce using rule 2 (exp)
 
 
 state 2
 
-    $axiom  ->  exp . $   (rule 0)
-    exp  ->  exp . OP exp   (rule 1)
-
-    $          shift, and go to state 3
-    OP         shift, and go to state 4
+    0 $axiom: exp . $
+    1 exp: exp . OP exp
 
+    $   shift, and go to state 3
+    OP  shift, and go to state 4
 
 
 state 3
 
-    $axiom  ->  exp $ .   (rule 0)
+    0 $axiom: exp $ .
 
     $default   accept
 
 
 state 4
 
-    exp  ->  . exp OP exp   (rule 1)
-    exp  ->  exp OP . exp   (rule 1)
-    exp  ->  . NUM   (rule 2)
-
-    NUM        shift, and go to state 1
+    1 exp: . exp OP exp
+    1    | exp OP . exp
+    2    | . NUM
 
-    exp        go to state 5
+    NUM  shift, and go to state 1
 
+    exp  go to state 5
 
 
 state 5
 
-    exp  ->  exp . OP exp  [$]   (rule 1)
-    exp  ->  exp OP exp .  [$]   (rule 1)
+    1 exp: exp . OP exp  [$, OP]
+    1    | exp OP exp .  [$, OP]
 
-    OP         shift, and go to state 4
+    $default  reduce using rule 1 (exp)
+    Conflict between rule 2 and token OP resolved as shift (%left OP).
+]])
 
-    $default   reduce using rule 1 (exp)
+AT_CLEANUP
 
-    Conflict between rule 2 and token OP resolved as reduce (%right OP).
 
+## -------------------------------- ##
+## Defaulted Conflicted Reduction.  ##
+## -------------------------------- ##
+
+# When there are RR conflicts, some rules are disabled.  Usually it is
+# simply displayed as:
+#
+#    $           reduce using rule 3 (num)
+#    $           [reduce using rule 4 (id)]
+#
+# But when `reduce 3' is the default action, we'd produce:
+#
+#    $           [reduce using rule 4 (id)]
+#    $default    reduce using rule 3 (num)
+#
+# In this precise case (a reduction is masked by the default
+# reduction), we make the `reduce 3' explicit:
+#
+#    $           reduce using rule 3 (num)
+#    $           [reduce using rule 4 (id)]
+#    $default    reduce using rule 3 (num)
+#
+# Maybe that's not the best display, but then, please propose something
+# else.
+
+AT_SETUP([Defaulted Conflicted Reduction])
+AT_KEYWORDS([report])
 
+AT_DATA([input.y],
+[[%%
+exp: num | id;
+num: '0';
+id : '0';
+%%
+]])
+
+AT_CHECK([bison input.y -o input.c --report=all], 0, [],
+[input.y contains 1 reduce/reduce conflict.
+])
+
+# Check the contents of the report.
+AT_CHECK([cat input.output], [],
+[[State 1 contains 1 reduce/reduce conflict.
+
+
+Grammar
+
+    0 $axiom: exp $
+
+    1 exp: num
+    2    | id
+
+    3 num: '0'
+
+    4 id: '0'
+
+
+Terminals, with rules where they appear
+
+$ (0) 0
+'0' (48) 3 4
+error (256)
+
+
+Nonterminals, with rules where they appear
+
+$axiom (4)
+    on left: 0
+exp (5)
+    on left: 1 2, on right: 0
+num (6)
+    on left: 3, on right: 1
+id (7)
+    on left: 4, on right: 2
+
+
+state 0
+
+    0 $axiom: . exp $
+    1 exp: . num
+    2    | . id
+    3 num: . '0'
+    4 id: . '0'
+
+    '0'  shift, and go to state 1
+
+    exp  go to state 2
+    num  go to state 3
+    id   go to state 4
+
+
+state 1
+
+    3 num: '0' .  [$]
+    4 id: '0' .  [$]
+
+    $         reduce using rule 3 (num)
+    $         [reduce using rule 4 (id)]
+    $default  reduce using rule 3 (num)
+
+
+state 2
+
+    0 $axiom: exp . $
+
+    $  shift, and go to state 5
+
+
+state 3
+
+    1 exp: num .
+
+    $default  reduce using rule 1 (exp)
+
+
+state 4
+
+    2 exp: id .
+
+    $default  reduce using rule 2 (exp)
+
+
+state 5
+
+    0 $axiom: exp $ .
+
+    $default   accept
 ]])
 
 AT_CLEANUP
@@ -377,7 +499,7 @@ AT_DATA([input.y],
 exp: exp OP exp | NUM;
 ]])
 
-AT_CHECK([bison input.y -o input.c], 0)
+AT_CHECK([bison input.y -o input.c])
 AT_CLEANUP