summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/list/REVERSE-NotList.cmake
Commit message (Collapse)AuthorAgeFilesLines
* cmListCommand: make list(ACTION not_a_list) succeed when idempotentBen Boeckel2018-10-161-0/+4
| | | | | | | | | | | The operations changed here all are no-ops on empty lists anyways, so just have them succeed when given non-extant lists. - `list(REMOVE_ITEM)` - `list(REMOVE_DUPLICATES)` - `list(SORT)` - `list(FILTER)` - `list(REVERSE)`
* Tests: Move command failure cases into RunCMake infrastructureBrad King2015-07-141-0/+2
Move failure cases from the CMake.{If,List,While,GetProperty} tests over to the RunCMake.{if,list,while,get_property} tests to use the more modern infrastructure. This also avoids using REGEX_ESCAPE_STRING to try to regex-match full paths.