aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@osg.samsung.com>2017-08-25 15:16:17 -0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-02-25 01:10:52 +0200
commitc48b9594ff1ffc9dacdcb0f4fca6f459b95989f5 (patch)
treebc57b20c3714fc7cd024cdb63fce71b3669914fa /run_project_tests.py
parente2a4cff76f35b7c666a0bcaa087bcdef579ef19f (diff)
downloadmeson-c48b9594ff1ffc9dacdcb0f4fca6f459b95989f5.zip
meson-c48b9594ff1ffc9dacdcb0f4fca6f459b95989f5.tar.gz
meson-c48b9594ff1ffc9dacdcb0f4fca6f459b95989f5.tar.bz2
Add support for Visual Studio csc c# compiler
Diffstat (limited to 'run_project_tests.py')
-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 c2c3efe..6e03f6c 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -478,7 +478,7 @@ def detect_tests_to_run():
('platform-linux', 'linuxlike', mesonlib.is_osx() or mesonlib.is_windows()),
('java', 'java', backend is not Backend.ninja or mesonlib.is_osx() or not have_java()),
- ('C#', 'csharp', backend is not Backend.ninja or not shutil.which('mcs')),
+ ('C#', 'csharp', backend is not Backend.ninja or not (shutil.which('mcs') or shutil.which('csc')) or not shutil.which('resgen')),
('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()),