]> git.saurik.com Git - bison.git/commitdiff
* tests/regression.at (Mixing %token styles): New test.
authorAkim Demaille <akim@epita.fr>
Fri, 2 Nov 2001 14:15:48 +0000 (14:15 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 2 Nov 2001 14:15:48 +0000 (14:15 +0000)
ChangeLog
tests/regression.at

index a21a2b1f826436025466557d2207475151a3987e..85b90b7a71149b79db691ec0dc32ad29ed9aef43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-11-02  Akim Demaille  <akim@epita.fr>
+
+       * tests/regression.at (Mixing %token styles): New test.
+
 2001-11-02  Akim Demaille  <akim@epita.fr>
 
        * src/reader.c (parse_thong_decl): Formatting changes.
index f37f2c085bafb5a9187778aa200b0fd782021b1f..b831caf7021d3f51d9895e84518b8b5ef57d6d18 100644 (file)
@@ -44,6 +44,29 @@ AT_CLEANUP([duplicate.*])
 
 
 
+## ---------------------- ##
+## Mixing %token styles.  ##
+## ---------------------- ##
+
+
+AT_SETUP([Mixing %token styles])
+
+# Taken from the documentation.
+AT_DATA([input.y],
+[[%token  <operator>  OR      "||"
+%token  <operator>  LE 134  "<="
+%left  OR  "<="
+%%
+exp: ;
+%%
+]])
+
+AT_CHECK([bison -v input.y -o input.c], 0, ignore, ignore)
+
+AT_CLEANUP([input.*])
+
+
+
 ## ---------------------- ##
 ## %union and --defines.  ##
 ## ---------------------- ##