aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2016-11-09 02:38:10 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2016-11-09 02:38:10 +0530
commit377fe510033043555ed1824362f6db9935547707 (patch)
treeac40995902d5098042b69d1baba35c68959c9afa
parente90f21ae598cf8f7c11ec01a730895e74d2326eb (diff)
downloadmeson-377fe510033043555ed1824362f6db9935547707.zip
meson-377fe510033043555ed1824362f6db9935547707.tar.gz
meson-377fe510033043555ed1824362f6db9935547707.tar.bz2
project tests: Require both javac and java for Java tests
-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 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))