]> git.saurik.com Git - bison.git/commitdiff
* tests/sets.at (Accept): Fix typos in regular expression used to
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 10 Dec 2005 00:25:27 +0000 (00:25 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 10 Dec 2005 00:25:27 +0000 (00:25 +0000)
sed out the final state number.

ChangeLog
tests/sets.at

index 292460faa42db91278b8bf3b719ee9b263db94ee..1af343c2faa5d9325fff8160f7f2cf542a9a374e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-12-09  Paul Eggert  <eggert@cs.ucla.edu>
 
 2005-12-09  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * tests/sets.at (Accept): Fix typos in regular expression used to
+       sed out the final state number.
+
        Work around portability problem on Solaris 10: flex-generated
        files include <stdio.h> before <config.h>, which messes up
        because the latter defines __EXTENSIONS__.  Address the problem
        Work around portability problem on Solaris 10: flex-generated
        files include <stdio.h> before <config.h>, which messes up
        because the latter defines __EXTENSIONS__.  Address the problem
index 262ccfa08fda365c9c7abdccd0d73c2e3fd72e22..a731315b231e06386a62f5e5e8cd6f3565e93b85 100644 (file)
@@ -281,7 +281,7 @@ input:
 AT_CHECK([[bison -v -o input.c input.y]])
 
 # Get the final state in the parser.
 AT_CHECK([[bison -v -o input.c input.y]])
 
 # Get the final state in the parser.
-AT_CHECK([sed -n 's/.*define YYFINAL *\([0-9][0-9]\)*/final state \1/p' input.c],
+AT_CHECK([[sed -n 's/.*define YYFINAL *\([0-9][0-9]*\)/final state \1/p' input.c]],
          0, [stdout])
 mv stdout expout
 
          0, [stdout])
 mv stdout expout