]> git.saurik.com Git - bison.git/blobdiff - tests/regression.at
* tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
[bison.git] / tests / regression.at
index 9ebff2e8fa8e7fde3d758a06a960e76605de1763..d1d819e692f7ddeaeb1176c94b2f34bf84e5b1c8 100644 (file)
@@ -1,5 +1,5 @@
 # Bison Regressions.                               -*- Autotest -*-
-# Copyright 2001, 2002 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -296,7 +296,11 @@ AT_SETUP([Token definitions])
 
 # Bison managed, when fed with `%token 'f' "f"' to #define 'f'!
 AT_DATA([input.y],
-[[%token "end of file"
+[%{
+void yyerror (const char *s);
+int yylex (void);
+%}
+[%token "end of file"
 %token 'a' "a"
 %token "b" 'b'
 %token "c" c
@@ -459,7 +463,7 @@ AT_CHECK([bison -v input.y -o input.c])
 # Check only the tables.  We don't use --no-parser, because it is
 # still to be implemented in the experimental branch of Bison.
 AT_CHECK([[sed -n 's/  *$//;/^static const.*\[\] =/,/^}/p' input.c]], 0,
-[[static const yy_token_number_type yytranslate[] =
+[[static const unsigned char yytranslate[] =
 {
        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
@@ -511,7 +515,7 @@ static const short yytoknum[] =
 {
        0,   256,   257,   258,   259,   260,   261,    -1
 };
-static const yy_token_number_type yyr1[] =
+static const unsigned char yyr1[] =
 {
        0,     7,     8,     9,     9,    10,    11
 };
@@ -545,6 +549,11 @@ static const short yycheck[] =
 {
        7,     3,     9,     4,     0,    -1,     6,     5
 };
+static const unsigned char yystos[] =
+{
+       0,     3,     8,     9,    10,     4,     0,     6,    11,     5,
+       8,     8
+};
 ]])
 
 AT_CLEANUP