summaryrefslogtreecommitdiff
path: root/test cases/cmake/11 cmake_module_path
AgeCommit message (Collapse)Author
2024-10-11test: avoid need for explict CMake minimumscivision
This mitigates maintenance burden as CMake minimum version isn't relevant for these tests. CMake >= 3.31 warns if CMake minimum version is less than 3.10. ref: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/9875
2024-07-15tests: short-circuit tests that require cmake, fasterEli Schwartz
We have two ways of marking a test as skipped: - raise MESON_SKIP_TEST - declare that the tools it needs in test.json are unavailable Doing the former requires performing the configure stage including e.g. language setup. In several cases we weren't even getting this far anyway since we used both mechanisms (the cmake category has a category-wide skip for this, in fact). In some case, we were missing test.json declaring it skippable; add this.
2022-05-10Require CMake 3.14 for all tests that use the cmake moduleSimon McVittie
Older versions are not supported by the cmake module since 0.62. This avoids having to hard-code the linux-bionic-gcc CI job as being unable to run these tests, which leaves other older environments like Debian 10 still trying to run them (and failing). Signed-off-by: Simon McVittie <smcv@collabora.com>
2020-08-06cmake: Fix failing test case. Followup to #7527.Daniel Mensinger
2020-08-03cmake: Only run the cmake_module_path test for CMake >= 3.12Daniel Mensinger
2020-08-03cmake: resolve IMPORTED executables in custom commands (fixes #7509)Daniel Mensinger
2019-08-03Condense test directory names.Jussi Pakkanen