From 8c0c92e1a6fa6c602ebe843297bc03e4be3d3e2f Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Thu, 12 Aug 2021 19:40:09 +0300 Subject: Allow gettext test to skip on macOS. --- run_project_tests.py | 3 +++ 1 file changed, 3 insertions(+) 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: -- cgit v1.1