summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Partin <tristan@partin.io>2022-12-15 20:36:43 -0600
committerTristan Partin <tristan@partin.io>2022-12-15 20:36:43 -0600
commit71cddebf2c6093fe52de01329847926801f87f35 (patch)
treeaf458dc4795c2a1b6da270712363876dc0310a46
parentfb6fda385391ac5d030b4e642fc426ada5d80488 (diff)
downloadmeson-71cddebf2c6093fe52de01329847926801f87f35.tar.gz
Enable Java project tests on Darwim
-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 47acb2169..ce913f951 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -1091,7 +1091,7 @@ def detect_tests_to_run(only: T.Dict[str, T.List[str]], use_tmp: bool) -> T.List
TestCategory('platform-osx', 'osx', not mesonlib.is_osx()),
TestCategory('platform-windows', 'windows', not mesonlib.is_windows() and not mesonlib.is_cygwin()),
TestCategory('platform-linux', 'linuxlike', mesonlib.is_osx() or mesonlib.is_windows()),
- TestCategory('java', 'java', backend is not Backend.ninja or mesonlib.is_osx() or not have_java()),
+ TestCategory('java', 'java', backend is not Backend.ninja or not have_java()),
TestCategory('C#', 'csharp', skip_csharp(backend)),
TestCategory('vala', 'vala', backend is not Backend.ninja or not shutil.which(os.environ.get('VALAC', 'valac'))),
TestCategory('cython', 'cython', backend is not Backend.ninja or not shutil.which(os.environ.get('CYTHON', 'cython'))),