Allow gettext test to skip on macOS.

pull/9113/head
Jussi Pakkanen 3 years ago
parent e4c50bf8a7
commit 8c0c92e1a6
  1. 3
      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:

Loading…
Cancel
Save