diff options
-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..2c1e9d0 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 mesonlib.is_osx() and '6 gettext' in str(t.path): + return True + return False def skip_csharp(backend: Backend) -> bool: |