]> git.saurik.com Git - bison.git/commitdiff
Fix the previous test.
authorAkim Demaille <akim@epita.fr>
Thu, 7 Feb 2002 17:22:50 +0000 (17:22 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 7 Feb 2002 17:22:50 +0000 (17:22 +0000)
THANKS
tests/input.at

diff --git a/THANKS b/THANKS
index 7f3784810686a032461e5cd21de091d516b3e3ea..7f4e262ca1bb1dafeb3bfa2d56b041adcdb4747d 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -13,6 +13,7 @@ Dick Streefland               dick.streefland@altium.nl
 Enrico Scholz           enrico.scholz@informatik.tu-chemnitz.de
 Evgeny Stambulchik     fnevgeny@plasma-gate.weizmann.ac.il
 Fabrice Bauzac          noon@cote-dazur.com
+Florian Krohm           florian@edamail.fishkill.ibm.com
 H. Merijn Brand         h.m.brand@hccnet.nl
 Hans Aberg              haberg@matematik.su.se
 Jesse Thilo             jthilo@gnu.org
index 117af98674f0292b7abb09aa619209b85ff46ca9..978affc598d7dda88b3160507a7feefa03ab96cd 100644 (file)
@@ -33,7 +33,7 @@ exp: { $$ = $1 ; }
 ]])
 
 AT_CHECK([bison input.y], [1], [],
-[[input.y:2: invalid $ value
+[[input.y:2: invalid value: $1
 ]])
 
 AT_CLEANUP
@@ -52,7 +52,7 @@ exp: { @$ = @1 ; }
 ]])
 
 AT_CHECK([bison input.y], [1], [],
-[[input.y:2: invalid @ value
+[[input.y:2: invalid value: @1
 ]])
 
 AT_CLEANUP