]> git.saurik.com Git - bison.git/blobdiff - tests/regression.at
* data/yacc.c (yyreport_parse_error): New, extracted from...
[bison.git] / tests / regression.at
index 456f5a8f372a994c8ffb1d85360295fd8a355282..468610e5aaee943d004036e15ead3f8506ffaa52 100644 (file)
@@ -51,7 +51,7 @@ exp: MY_TOKEN;
 ]])
 
 AT_CHECK([bison input.y -o input.c])
-AT_CHECK([$CC $CFLAGS $CPPFLAGS input.c -c])
+AT_COMPILE([input], [-c input.c])
 
 AT_CLEANUP
 
@@ -100,7 +100,7 @@ exp: '(' exp ')' | NUM ;
 ]])
 
 AT_CHECK([bison -v input.y -o input.c], 0, [],
-[[input.y:6: warning: symbol `"<="' used more than once as a literal string
+[[input.y:6.8-14: warning: symbol `"<="' used more than once as a literal string
 ]])
 
 AT_CLEANUP
@@ -186,47 +186,42 @@ state 0
 
     0 $axiom: . expr $
 
-    'a'        shift, and go to state 1
+    'a'  shift, and go to state 1
 
-    $default   reduce using rule 3 (@2)
-
-    expr       go to state 2
-    @2         go to state 3
+    $default  reduce using rule 3 (@2)
 
+    expr  go to state 2
+    @2    go to state 3
 
 
 state 1
 
     2 expr: 'a' . @1 'b'
 
-    $default   reduce using rule 1 (@1)
-
-    @1         go to state 4
+    $default  reduce using rule 1 (@1)
 
+    @1  go to state 4
 
 
 state 2
 
     0 $axiom: expr . $
 
-    $          shift, and go to state 5
-
+    $  shift, and go to state 5
 
 
 state 3
 
     4 expr: @2 . 'c'
 
-    'c'        shift, and go to state 6
-
+    'c'  shift, and go to state 6
 
 
 state 4
 
     2 expr: 'a' @1 . 'b'
 
-    'b'        shift, and go to state 7
-
+    'b'  shift, and go to state 7
 
 
 state 5
@@ -240,18 +235,14 @@ state 6
 
     4 expr: @2 'c' .
 
-    $default   reduce using rule 4 (expr)
-
+    $default  reduce using rule 4 (expr)
 
 
 state 7
 
     2 expr: 'a' @1 'b' .
 
-    $default   reduce using rule 2 (expr)
-
-
-
+    $default  reduce using rule 2 (expr)
 ]])
 
 AT_CLEANUP
@@ -308,7 +299,6 @@ input.y:6.1: invalid character: `%'
 input.y:6.2: invalid character: `-'
 input.y:7.1-8.0: unexpected end of file in a prologue
 input.y:7.1-8.0: parse error, unexpected PROLOGUE, expecting ";" or "|"
-input.y:5.2: symbol a is used, but is not defined as a token and has no rules
 ]])
 
 AT_CLEANUP
@@ -338,7 +328,7 @@ exp: "a";
 ]])
 
 AT_CHECK([bison input.y -o input.c])
-AT_CHECK([$CC $CFLAGS $CPPFLAGS input.c -c])
+AT_COMPILE([input], [input.c -c])
 AT_CLEANUP
 
 
@@ -378,23 +368,33 @@ CONST_DEC:
 ]])
 
 AT_CHECK([bison -v input.y])
-sed -n 's/  *$//;/^$/!p' input.output >input.report
-AT_CHECK([cat input.report], 0,
+AT_CHECK([cat input.output], 0,
 [[Grammar
+
     0 $axiom: CONST_DEC_PART $
+
     1 CONST_DEC_PART: CONST_DEC_LIST
+
     2 CONST_DEC_LIST: CONST_DEC
     3               | CONST_DEC_LIST CONST_DEC
+
     4 @1: /* empty */
+
     5 CONST_DEC: @1 undef_id_tok '=' const_id_tok ';'
+
+
 Terminals, with rules where they appear
+
 $ (0) 0
 ';' (59) 5
 '=' (61) 5
 error (256)
 undef_id_tok (258) 5
 const_id_tok (259) 5
+
+
 Nonterminals, with rules where they appear
+
 $axiom (7)
     on left: 0
 CONST_DEC_PART (8)
@@ -405,47 +405,93 @@ CONST_DEC (10)
     on left: 5, on right: 2 3
 @1 (11)
     on left: 4, on right: 5
+
+
 state 0
+
     0 $axiom: . CONST_DEC_PART $
-    $default   reduce using rule 4 (@1)
-    CONST_DEC_PART     go to state 1
-    CONST_DEC_LIST     go to state 2
-    CONST_DEC  go to state 3
-    @1         go to state 4
+
+    $default  reduce using rule 4 (@1)
+
+    CONST_DEC_PART  go to state 1
+    CONST_DEC_LIST  go to state 2
+    CONST_DEC       go to state 3
+    @1              go to state 4
+
+
 state 1
+
     0 $axiom: CONST_DEC_PART . $
-    $          shift, and go to state 5
+
+    $  shift, and go to state 5
+
+
 state 2
+
     1 CONST_DEC_PART: CONST_DEC_LIST .
     3 CONST_DEC_LIST: CONST_DEC_LIST . CONST_DEC
-    undef_id_tok       reduce using rule 4 (@1)
-    $default   reduce using rule 1 (CONST_DEC_PART)
-    CONST_DEC  go to state 6
-    @1         go to state 4
+
+    undef_id_tok  reduce using rule 4 (@1)
+    $default      reduce using rule 1 (CONST_DEC_PART)
+
+    CONST_DEC  go to state 6
+    @1         go to state 4
+
+
 state 3
+
     2 CONST_DEC_LIST: CONST_DEC .
-    $default   reduce using rule 2 (CONST_DEC_LIST)
+
+    $default  reduce using rule 2 (CONST_DEC_LIST)
+
+
 state 4
+
     5 CONST_DEC: @1 . undef_id_tok '=' const_id_tok ';'
-    undef_id_tok       shift, and go to state 7
+
+    undef_id_tok  shift, and go to state 7
+
+
 state 5
+
     0 $axiom: CONST_DEC_PART $ .
+
     $default   accept
+
+
 state 6
+
     3 CONST_DEC_LIST: CONST_DEC_LIST CONST_DEC .
-    $default   reduce using rule 3 (CONST_DEC_LIST)
+
+    $default  reduce using rule 3 (CONST_DEC_LIST)
+
+
 state 7
+
     5 CONST_DEC: @1 undef_id_tok . '=' const_id_tok ';'
-    '='        shift, and go to state 8
+
+    '='  shift, and go to state 8
+
+
 state 8
+
     5 CONST_DEC: @1 undef_id_tok '=' . const_id_tok ';'
-    const_id_tok       shift, and go to state 9
+
+    const_id_tok  shift, and go to state 9
+
+
 state 9
+
     5 CONST_DEC: @1 undef_id_tok '=' const_id_tok . ';'
-    ';'        shift, and go to state 10
+
+    ';'  shift, and go to state 10
+
+
 state 10
+
     5 CONST_DEC: @1 undef_id_tok '=' const_id_tok ';' .
-    $default   reduce using rule 5 (CONST_DEC)
+
+    $default  reduce using rule 5 (CONST_DEC)
 ]])
 
 AT_CLEANUP
@@ -553,29 +599,29 @@ static const unsigned char yyr2[] =
 {
        0,     2,     1,     0,     2,     4,     2
 };
-static const short yydefact[] =
+static const unsigned char yydefact[] =
 {
        3,     0,     0,     2,     0,     0,     0,     3,     4,     3,
        6,     5
 };
-static const short yydefgoto[] =
+static const signed char yydefgoto[] =
 {
       -1,     2,     3,     4,     8
 };
-static const short yypact[] =
+static const signed char yypact[] =
 {
-      -2,    -1,     4,-32768,     0,     2,-32768,    -2,-32768,    -2,
-  -32768,-32768
+      -2,    -1,     4,    -8,     0,     2,    -8,    -2,    -8,    -2,
+      -8,    -8
 };
-static const short yypgoto[] =
+static const signed char yypgoto[] =
 {
-  -32768,    -7,-32768,-32768,-32768
+      -8,    -7,    -8,    -8,    -8
 };
-static const short yytable[] =
+static const unsigned char yytable[] =
 {
       10,     1,    11,     5,     6,     0,     7,     9
 };
-static const short yycheck[] =
+static const signed char yycheck[] =
 {
        7,     3,     9,     4,     0,    -1,     6,     5
 };