aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2021-06-21 19:45:14 +0100
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-07-07 20:08:12 +0200
commit6bf86f4783b48941bad169d3718f19bcdc0649b5 (patch)
treeb43ad85217bbabbe63eeac3bf55a05d20f93da05
parent62702005ebbf95699050ee5db26ee154bd874cb6 (diff)
downloadmeson-6bf86f4783b48941bad169d3718f19bcdc0649b5.zip
meson-6bf86f4783b48941bad169d3718f19bcdc0649b5.tar.gz
meson-6bf86f4783b48941bad169d3718f19bcdc0649b5.tar.bz2
Drop non-framework test names from skippable()
In all these cases, the test has already been determined as skippable because it's not part of the 'frameworks' suite.
-rwxr-xr-xrun_project_tests.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index a9030ce..779b7da 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -930,10 +930,6 @@ def skippable(suite: str, test: str) -> bool:
if not suite.endswith('frameworks'):
return True
- # this test assumptions aren't valid for Windows paths
- if test.endswith('38 libdir must be inside prefix'):
- return True
-
# gtk-doc test may be skipped, pending upstream fixes for spaces in
# filenames landing in the distro used for CI
if test.endswith('10 gtk-doc'):
@@ -943,10 +939,6 @@ def skippable(suite: str, test: str) -> bool:
if test.endswith('netcdf'):
return True
- # MSVC doesn't link with GFortran
- if test.endswith('14 fortran links c'):
- return True
-
# Blocks are not supported on all compilers
if test.endswith('29 blocks'):
return True
@@ -984,10 +976,6 @@ def skippable(suite: str, test: str) -> bool:
if test.endswith('4 qt'):
return not mesonlib.is_osx()
- # Bindgen isn't available in all distros
- if test.endswith('12 bindgen'):
- return False
-
# No frameworks test should be skipped on linux CI, as we expect all
# prerequisites to be installed
if mesonlib.is_linux():