diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-29 05:07:24 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-29 05:07:24 -0700 |
commit | 631016946ca8134244c4e58bef6863d204b1119b (patch) | |
tree | 5d6eb18bcb55307c2306bf1685f07c5d4818b990 /tests | |
parent | 681afbc855c86df8c3521ccdfadb7f16b9729baa (diff) |
Fix pass-through of '=' and add a test for it.
Previously '=' was not included in our PUNCTUATION regeular expression,
but it *was* excldued from our OTHER regular expression, so we were
getting the default (and hamful) lex action of just printing it.
The test we add here is named "punctuator" with the idea that we can
extend it as needed for other punctuator testing.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/071-punctuator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/071-punctuator.c b/tests/071-punctuator.c new file mode 100644 index 0000000000..959d682598 --- /dev/null +++ b/tests/071-punctuator.c @@ -0,0 +1 @@ +a = b |