diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2019-04-11 19:45:46 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2019-04-15 12:07:17 +0100 |
commit | 744ca13ddb69da337bc19ac0461b769f6f23cfad (patch) | |
tree | bb833a6d730e369fb9af68f3ef95a0926c10be75 /run_project_tests.py | |
parent | 050b7d8584d2e22b0131b6a5728c842006054167 (diff) | |
download | meson-744ca13ddb69da337bc19ac0461b769f6f23cfad.zip meson-744ca13ddb69da337bc19ac0461b769f6f23cfad.tar.gz meson-744ca13ddb69da337bc19ac0461b769f6f23cfad.tar.bz2 |
Don't always skip objc/objc++ tests on Windows
These tests can run under MSYS2 using gcc or clang objc/objc++.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index a20f474..c1d42fc 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -565,8 +565,8 @@ def detect_tests_to_run(): ('vala', 'vala', backend is not Backend.ninja or not shutil.which('valac')), ('rust', 'rust', backend is not Backend.ninja or not shutil.which('rustc')), ('d', 'd', backend is not Backend.ninja or not have_d_compiler()), - ('objective c', 'objc', backend not in (Backend.ninja, Backend.xcode) or mesonlib.is_windows() or not have_objc_compiler()), - ('objective c++', 'objcpp', backend not in (Backend.ninja, Backend.xcode) or mesonlib.is_windows() or not have_objcpp_compiler()), + ('objective c', 'objc', backend not in (Backend.ninja, Backend.xcode) or not have_objc_compiler()), + ('objective c++', 'objcpp', backend not in (Backend.ninja, Backend.xcode) or not have_objcpp_compiler()), ('fortran', 'fortran', backend is not Backend.ninja or not shutil.which('gfortran')), ('swift', 'swift', backend not in (Backend.ninja, Backend.xcode) or not shutil.which('swiftc')), ('cuda', 'cuda', backend not in (Backend.ninja, Backend.xcode) or not shutil.which('nvcc')), |