diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2022-12-16 20:30:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-16 20:30:53 +0200 |
| commit | 6c26cb96b8a34a583fca023effd31a397c7f106e (patch) | |
| tree | c555d30bdac5e3e05296413e0d933b26db070280 /run_project_tests.py | |
| parent | 2ef94a71f8072567e39f22bfed7bcae0ca2038c2 (diff) | |
| parent | 71cddebf2c6093fe52de01329847926801f87f35 (diff) | |
| download | meson-6c26cb96b8a34a583fca023effd31a397c7f106e.tar.gz | |
Merge pull request #11181 from tristan957/backends
JNISystemDependency fixes
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 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'))), |
