summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/foreach/RunCMakeTest.cmake
Commit message (Collapse)AuthorAgeFilesLines
* foreach(): loop variables are only available in the loop scopeMarc Chevrier2021-04-281-0/+2
| | | | Fixes: #20553
* foreach: Fix crash parsing integer out of rangeBen McMorran2020-09-181-0/+1
|
* foreach: Set fatal error on invalid rangeKyle Edwards2020-02-271-0/+1
| | | | Fixes: #20394
* foreach: Fix crash when parsing invalid integerKyle Edwards2020-02-271-0/+6
| | | | Fixes: #20393
* foreach: Allow multiple iteration variables for `ZIP_LIST` modeAlex Turbov2019-12-071-0/+5
|
* foreach: Introduce `IN ZIP_LISTS` modeAlex Turbov2019-12-011-0/+5
|
* Refactor: Modernize `foreach` code and fix some bugsAlex Turbov2019-11-061-0/+1
| | | | | | - 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-161-0/+3
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