aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-08-12 19:40:09 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2021-08-12 23:25:33 +0300
commit8c0c92e1a6fa6c602ebe843297bc03e4be3d3e2f (patch)
tree0775d8bc6464a1d235922d5502081c86a2e9fcd8
parente4c50bf8a725d9d72fe8e4ac842bbcfc0bfa14a2 (diff)
downloadmeson-8c0c92e1a6fa6c602ebe843297bc03e4be3d3e2f.zip
meson-8c0c92e1a6fa6c602ebe843297bc03e4be3d3e2f.tar.gz
meson-8c0c92e1a6fa6c602ebe843297bc03e4be3d3e2f.tar.bz2
Allow gettext test to skip on macOS.
-rwxr-xr-xrun_project_tests.py3
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: