diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2017-04-06 20:21:55 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2017-04-06 22:48:02 +0100 |
commit | 85f989f74476f4cc02434cb34a27b8581023f8e3 (patch) | |
tree | e59cf40198584014047fb2791a40de1c60175c4b /run_project_tests.py | |
parent | 16ad5508721300fc5afab6dff61d650c799a35ac (diff) | |
download | meson-85f989f74476f4cc02434cb34a27b8581023f8e3.zip meson-85f989f74476f4cc02434cb34a27b8581023f8e3.tar.gz meson-85f989f74476f4cc02434cb34a27b8581023f8e3.tar.bz2 |
Don't run framework tests on Cygwin
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 4a4101a..cbf8f08 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -446,7 +446,7 @@ def detect_tests_to_run(): all_tests.append(('platform-osx', gather_tests('test cases/osx'), False if mesonlib.is_osx() else True)) all_tests.append(('platform-windows', gather_tests('test cases/windows'), False if mesonlib.is_windows() or mesonlib.is_cygwin() 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(('framework', gather_tests('test cases/frameworks'), False if not mesonlib.is_osx() and not mesonlib.is_windows() and not mesonlib.is_cygwin() else True)) all_tests.append(('java', gather_tests('test cases/java'), False if using_backend('ninja') and not mesonlib.is_osx() and have_java() else True)) all_tests.append(('C#', gather_tests('test cases/csharp'), False if using_backend('ninja') and shutil.which('mcs') else True)) all_tests.append(('vala', gather_tests('test cases/vala'), False if using_backend('ninja') and shutil.which('valac') else True)) |