Skip to content

Commit

Permalink
Allow gettext test to skip on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpakkane committed Aug 12, 2021
1 parent e4c50bf commit 8c0c92e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions run_project_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 8c0c92e

Please sign in to comment.