diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-11-09 02:38:10 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-11-09 02:38:10 +0530 |
commit | 377fe510033043555ed1824362f6db9935547707 (patch) | |
tree | ac40995902d5098042b69d1baba35c68959c9afa /run_project_tests.py | |
parent | e90f21ae598cf8f7c11ec01a730895e74d2326eb (diff) | |
download | meson-377fe510033043555ed1824362f6db9935547707.zip meson-377fe510033043555ed1824362f6db9935547707.tar.gz meson-377fe510033043555ed1824362f6db9935547707.tar.bz2 |
project tests: Require both javac and java for Java tests
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 22e92b8..e373ffa 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -338,7 +338,7 @@ def detect_tests_to_run(): all_tests.append(('platform-windows', gather_tests('test cases/windows'), False if mesonlib.is_windows() else True)) all_tests.append(('platform-linux', gather_tests('test cases/linuxlike'), False if not (mesonlib.is_osx() or mesonlib.is_windows()) else True)) all_tests.append(('framework', gather_tests('test cases/frameworks'), False if not mesonlib.is_osx() and not mesonlib.is_windows() else True)) - all_tests.append(('java', gather_tests('test cases/java'), False if not mesonlib.is_osx() and shutil.which('javac') else True)) + all_tests.append(('java', gather_tests('test cases/java'), False if not mesonlib.is_osx() and shutil.which('javac') and shutil.which('java') else True)) all_tests.append(('C#', gather_tests('test cases/csharp'), False if shutil.which('mcs') else True)) all_tests.append(('vala', gather_tests('test cases/vala'), False if shutil.which('valac') else True)) all_tests.append(('rust', gather_tests('test cases/rust'), False if shutil.which('rustc') else True)) |