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.
pull/8973/head
Jon Turney 4 years ago committed by Daniel Mensinger
parent 62702005eb
commit 6bf86f4783
  1. 12
      run_project_tests.py

@ -930,10 +930,6 @@ def skippable(suite: str, test: str) -> bool:
if not suite.endswith('frameworks'): if not suite.endswith('frameworks'):
return True 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 # gtk-doc test may be skipped, pending upstream fixes for spaces in
# filenames landing in the distro used for CI # filenames landing in the distro used for CI
if test.endswith('10 gtk-doc'): if test.endswith('10 gtk-doc'):
@ -943,10 +939,6 @@ def skippable(suite: str, test: str) -> bool:
if test.endswith('netcdf'): if test.endswith('netcdf'):
return True return True
# MSVC doesn't link with GFortran
if test.endswith('14 fortran links c'):
return True
# Blocks are not supported on all compilers # Blocks are not supported on all compilers
if test.endswith('29 blocks'): if test.endswith('29 blocks'):
return True return True
@ -984,10 +976,6 @@ def skippable(suite: str, test: str) -> bool:
if test.endswith('4 qt'): if test.endswith('4 qt'):
return not mesonlib.is_osx() 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 # No frameworks test should be skipped on linux CI, as we expect all
# prerequisites to be installed # prerequisites to be installed
if mesonlib.is_linux(): if mesonlib.is_linux():

Loading…
Cancel
Save