summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Syntax/ParenInENV-stderr.txt
Commit message (Collapse)AuthorAgeFilesLines
* LexerParser: Regenerate parser files with GNU Bison 3.7.4Christoph GrĂ¼ninger2021-01-251-2/+2
| | | | Adjust expected test output.
* cmCommandArgumentParserHelper: rework input handlingOleksandr Koval2020-09-091-1/+1
| | | | | | | | Old implementation uses involved Flex input management technique that requires usage of obsolete YY_INPUT macro. This causes a lot of useless allocations and byte-by-byte scanning. New implementation avoids those hacks, it uses yy_scan_string() API to setup Flex input. Also it fixes reporting of syntax error position and corresponding tests.
* Parser: Issue messages through cmake, not cmSystemToolsStephen Kelly2016-08-251-5/+3
| | | | | Make these messages uniform with regard to other messages issued by cmake.
* cmMakefile: Create a scoped context for parsing listfiles.Stephen Kelly2015-07-061-1/+3
| | | | Update the Syntax tests to check for updated/improved backtraces.
* tests: Add variable expansion testsBen Boeckel2014-02-211-0/+20
There are some corner cases in variable expansion which would be nice to capture before going and rewriting the variable expansion code. The majority of these are related to configuring files and strings with '@' in them in conjunction with @ONLY being specified. Another is testing for '(' usage inside of ENV variable references based on whether it is quoted or not.