aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-05-06 10:58:25 +0100
committerEli Schwartz <eschwartz93@gmail.com>2022-05-10 07:56:59 -0400
commit65ea833d58f5e4720b89e6f97b38cd7d61b48418 (patch)
tree78e555fa67e5d3585a5f6e6052634fcd32a7ceae /unittests
parent7650f328284f24c2f70dcfb1689ae8fc22c04cf1 (diff)
downloadmeson-65ea833d58f5e4720b89e6f97b38cd7d61b48418.zip
meson-65ea833d58f5e4720b89e6f97b38cd7d61b48418.tar.gz
meson-65ea833d58f5e4720b89e6f97b38cd7d61b48418.tar.bz2
Require CMake 3.14 for all tests that use the cmake module
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>
Diffstat (limited to 'unittests')
-rw-r--r--unittests/allplatformstests.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py
index 8425cf5..f0e27e9 100644
--- a/unittests/allplatformstests.py
+++ b/unittests/allplatformstests.py
@@ -3740,8 +3740,6 @@ class AllPlatformTests(BasePlatformTests):
# This checks a bug where if a non-meson project is used as a third
# level (or deeper) subproject it doesn't cause a rebuild if the build
# files for that project are changed
- if os.environ.get('MESON_CI_JOBNAME') == 'linux-bionic-gcc':
- raise SkipTest('Unsupported CMake version')
testdir = os.path.join(self.unit_test_dir, '84 nested subproject regenerate depends')
cmakefile = Path(testdir) / 'subprojects' / 'sub2' / 'CMakeLists.txt'
self.init(testdir)