diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-08-12 19:40:09 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-08-12 19:40:09 +0300 |
commit | cb19e54107caaa50b1471ebe5ca1d55008912ade (patch) | |
tree | b0b0ef013b75d0f676fcfd309ddb1e561bf5c24a | |
parent | 05d36ee394475b5efe7b6d14ad4bc3d6cc627125 (diff) | |
download | meson-macfixes3.zip meson-macfixes3.tar.gz meson-macfixes3.tar.bz2 |
Allow gettext test to skip on macOS.macfixes3
-rwxr-xr-x | run_project_tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index ba42681..aa259db 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -962,6 +962,9 @@ def skip_dont_care(t: TestDef) -> bool: if not t.category.endswith('frameworks'): return True + if '6 gettext' in t.path and mesonlib.is_osx(): + return True + return False def skip_csharp(backend: Backend) -> bool: |