summaryrefslogtreecommitdiff
path: root/tests/existing.at
diff options
context:
space:
mode:
authorJoel E. Denny <jdenny@clemson.edu>2009-08-28 03:46:37 -0400
committerJoel E. Denny <jdenny@clemson.edu>2009-08-28 07:10:28 -0400
commitcf499cff31eabd04e37107484647bdd453137d1d (patch)
treec24101b696d0f72f900ac2ebdeb4eb9f3a9d820e /tests/existing.at
parent6ba9640406758718fdcfb7a1154e58ce4d9b196c (diff)
downloadbison-cf499cff31eabd04e37107484647bdd453137d1d.tar.gz
%define: accept unquoted values.
* NEWS (2.5): Group all %define changes together, and document this one. Remove quotes in IELR and canonical LR entry. * doc/bison.texinfo: Remove quotes in most examples throughout. (Decl Summary): Update %define documentation. (Table of Symbols): Likewise. * src/ielr.c (LrType): Update documentation. * src/parse-gram.y (content.opt): Add production for ID. * tests/actions.at: Remove quotes in most tests. * tests/calc.at: Likewise. * tests/existing.at: Likewise. * tests/input.at: Likewise. * tests/local.at: Likewise. * tests/push.at: Likewise. * tests/reduce.at: Likewise. * tests/torture.at: Likewise.
Diffstat (limited to 'tests/existing.at')
-rw-r--r--tests/existing.at6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/existing.at b/tests/existing.at
index 5a897324..ba06626b 100644
--- a/tests/existing.at
+++ b/tests/existing.at
@@ -42,18 +42,18 @@ AT_CHECK([[diff -u input-lalr.output input.output \
[[0]], [$1])])
AT_TEST_TABLES_AND_PARSE([$2[: LALR(1)]], [[LALR]], [[last-state]],
- [[%define lr.type "lalr"
+ [[%define lr.type lalr
]$3],
[$4], [$5], [$6], [$7],
[AT_LALR1_DIFF_CHECK([$8])$9], [$10], [$11], [$12])
AT_TEST_TABLES_AND_PARSE([$2[: IELR(1)]], [[IELR]], [[last-state]],
- [[%define lr.type "ielr"
+ [[%define lr.type ielr
]$3],
[$4], [$5], [$6], [$7],
[AT_LALR1_DIFF_CHECK([$8])$9], [$10], [$11], [$12])
AT_TEST_TABLES_AND_PARSE([$2[: Canonical LR(1)]], [[canonical LR]],
[[last-state,no-xml]],
- [[%define lr.type "canonical-lr"
+ [[%define lr.type canonical-lr
]$3],
[$4], [$5], [$6], [$7],
[$9], [$10], [$11], [$12])