diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-03-13 13:09:59 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-13 23:18:09 +0200 |
commit | e7c4601fe3599662b4586cf4887b69110ffb4a6b (patch) | |
tree | d87aba5e278908a80843b76d30f06a4099e87036 /run_project_tests.py | |
parent | 4adadadb91e1b860db926ff25598a4687202aa84 (diff) | |
download | meson-e7c4601fe3599662b4586cf4887b69110ffb4a6b.zip meson-e7c4601fe3599662b4586cf4887b69110ffb4a6b.tar.gz meson-e7c4601fe3599662b4586cf4887b69110ffb4a6b.tar.bz2 |
tests: disable Dlang tests on windows
These don't work and no one has fixed them. When I've tried to
download dmd for windows I can't get a valid installer from their
website. Let's at least turn the CI green.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index bb0e062..89f11d3 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -559,7 +559,7 @@ def detect_tests_to_run(): ('C#', 'csharp', skip_csharp(backend)), ('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()), + ('d', 'd', backend is not Backend.ninja or not have_d_compiler() or mesonlib.is_windows()), ('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()), ('fortran', 'fortran', backend is not Backend.ninja or not shutil.which('gfortran')), |