mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-23 11:13:03 +00:00
* tests/sets.at (Accept): Fix typos in regular expression used to
sed out the final state number.
This commit is contained in:
@@ -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
|
Work around portability problem on Solaris 10: flex-generated
|
||||||
files include <stdio.h> before <config.h>, which messes up
|
files include <stdio.h> before <config.h>, which messes up
|
||||||
because the latter defines __EXTENSIONS__. Address the problem
|
because the latter defines __EXTENSIONS__. Address the problem
|
||||||
|
|||||||
@@ -281,7 +281,7 @@ input:
|
|||||||
AT_CHECK([[bison -v -o input.c input.y]])
|
AT_CHECK([[bison -v -o input.c input.y]])
|
||||||
|
|
||||||
# Get the final state in the parser.
|
# 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])
|
0, [stdout])
|
||||||
mv stdout expout
|
mv stdout expout
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user