summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/FileAPI/FailConfigure-check.py
Commit message (Collapse)AuthorAgeFilesLines
* find_package: generate `find_package-v1` configure log eventsBen Boeckel2025-05-091-1/+1
| | | | | | | Since `find_package` is far more complex than other `find_*` commands, it gets its own event. Closes: #24833
* cmFindBase: Create `find-v1` configure log eventsBen Boeckel2025-04-281-1/+1
| | | | | | | | | | | | | | | Record `find_` command events in the configure log, except `find_package` as it is far more complicated (and will have its own event kind). Note that testing only generates the events of interest, there is no verification. Also note that testing that the "found" to "notfound" transition causes an event is not testable because a truthy value in the variable skips any kind of verification or other logic beyond normalization. Co-Authored-by: Ryan Krattiger <ryan.krattiger@kitware.com> See: #24833
* fileapi: Generate partial reply when buildsystem generation failsBrad King2025-04-141-0/+74
In particular, the `configureLog` reply is useful for IDEs to read `CMakeFiles/CMakeConfigureLog.yaml` when configuration fails. Fixes: #26621