summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CommandLine/C-no-arg-stderr.txt
Commit message (Collapse)AuthorAgeFilesLines
* cmake: redesign command-line argument parsingRobert Maynard2020-11-191-1/+1
| | | | | | | | | | | | | | | | | | | Make handling more consistent: "-S" -> invalid "-S/path/to/source" -> valid "-S /path/to/source" -> valid "-S=/path/to/source" -> now valid "-D" -> invalid "-DStr" -> valid "-D Str" -> valid "-D=Str" -> now valid "--log-level=" -> invalid "--log-level" -> invalid "--log-level=2" -> valid "--log-level 2" -> now valid
* Tests: Move more command line tests into RunCMake.CommandLineBrad King2015-04-101-0/+2
Port most CMakeTestBadCommandLines test cases to RunCMake.CommandLine and drop the former test. Add validation of expected results, which was not done by the old test.