summaryrefslogtreecommitdiff
path: root/test/regress/7F3650FD.test
Commit message (Collapse)AuthorAgeFilesLines
* Remove TOK_A_YEAR tokenChristoph Dittmann2018-06-101-1/+1
| | | | | | | | | | | | | | | | This fixes #1626. The tokenizer eagerly classifies 4-digit integers as TOK_A_YEAR tokens. In some contexts such as "every 1000 years", this causes errors. I think the tokenizer does not have enough information available to distinguish between integers and years. After this patch, the tokenizer will always classify integers as TOK_INT tokens. The "has 4 digits" heuristic to determine if an integer is a year is moved to the place where it's actually needed (and it can be slightly more generic there, too).
* Changed testing format to aid with debuggingJohn Wiegley2011-02-121-19/+14
|
* Removed needless "=== 0" and ">>>2" lines from test filesJohn Wiegley2011-02-121-6/+0
|
* The new period parser is passing all testsJohn Wiegley2009-11-181-12/+57
|
* Renamed date_interval_t::end to finishJohn Wiegley2009-11-171-5/+5
|
* Fixed issues with period strings like "2009/10"John Wiegley2009-11-021-0/+50