summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-03-13 13:09:59 -0700
committerJussi Pakkanen <jpakkane@gmail.com>2019-03-13 23:18:09 +0200
commite7c4601fe3599662b4586cf4887b69110ffb4a6b (patch)
treed87aba5e278908a80843b76d30f06a4099e87036
parent4adadadb91e1b860db926ff25598a4687202aa84 (diff)
downloadmeson-e7c4601fe3599662b4586cf4887b69110ffb4a6b.tar.gz
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.
-rwxr-xr-xrun_project_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index bb0e062b3..89f11d382 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')),