summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/foreach
Commit message (Collapse)AuthorAgeFilesLines
* foreach: Set fatal error on invalid rangeKyle Edwards2020-02-274-0/+8
| | | | Fixes: #20394
* foreach: Fix crash when parsing invalid integerKyle Edwards2020-02-2719-0/+48
| | | | Fixes: #20393
* foreach: Allow multiple iteration variables for `ZIP_LIST` modeAlex Turbov2019-12-0715-0/+81
|
* foreach: Introduce `IN ZIP_LISTS` modeAlex Turbov2019-12-0115-0/+120
|
* Refactor: Modernize `foreach` code and fix some bugsAlex Turbov2019-11-063-0/+112
| | | | | | - fix the typo in `foreach` documentation - fix broken `foreach(... IN ITEMS ... LISTS ...)` - add tests of `foreach` for existed functionality and fixes
* Tests: Add test for bad foreach inside a functionBrad King2017-11-165-0/+17
Add test for a case fixed by commit 6a4a61d9e1 (cmForEachCommand: prevent leakage, 2017-10-09). Prior to that fix, this test case could trigger an assertion failure. Fixes: #17464