summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Syntax/StringNoSpace-stderr.txt
Commit message (Collapse)AuthorAgeFilesLines
* Parser: Issue messages through cmake, not cmSystemToolsStephen Kelly2016-08-251-8/+4
| | | | | Make these messages uniform with regard to other messages issued by cmake.
* cmMakefile: Create a scoped context for parsing listfiles.Stephen Kelly2015-07-061-2/+6
| | | | Update the Syntax tests to check for updated/improved backtraces.
* Warn about arguments not separated by whitespaceBrad King2013-08-081-1/+17
| | | | | | | | | | | Teach the lexer to return tokens for whitespace. Teach the parser to tolerate the space tokens where whitespace is allowed. Also teach the parser to diagnose and warn about cases of quoted arguments followed immediately by another argument. This was accidentally allowed previously, so we only warn. Update the RunCMake.Syntax test case StringNoSpace expected stderr to include the warnings.
* Add RunCMake.Syntax test to cover argument parsingBrad King2013-08-081-0/+3
Test basic unquoted and quoted argument parsing cases including failure on an unterminated string and an unterminated command invocation. Also cover arguments not separated by any spaces, which is accidentally allowed by the current parser.