diff options
| author | Charles Brunet <charles.brunet@optelgroup.com> | 2025-05-09 16:42:59 -0400 |
|---|---|---|
| committer | Jussi Pakkanen <jussi.pakkanen@mailbox.org> | 2025-05-14 23:49:51 +0300 |
| commit | 0dc65117077b39cf85410f1561e7915a8bc1cbae (patch) | |
| tree | 09e56a1ce09a5c04de2d33675d881fb7f68aebff /test cases/frameworks | |
| parent | 0ca85ebf2e6f2c7cc3bcdcae96ea00d07461bd75 (diff) | |
| download | meson-0dc65117077b39cf85410f1561e7915a8bc1cbae.tar.gz | |
Skip gettext extractor on macos because it is unstable
Diffstat (limited to 'test cases/frameworks')
| -rw-r--r-- | test cases/frameworks/38 gettext extractor/meson.build | 4 | ||||
| -rw-r--r-- | test cases/frameworks/38 gettext extractor/test.json | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/test cases/frameworks/38 gettext extractor/meson.build b/test cases/frameworks/38 gettext extractor/meson.build index 9a54df542..a31c87d0a 100644 --- a/test cases/frameworks/38 gettext extractor/meson.build +++ b/test cases/frameworks/38 gettext extractor/meson.build @@ -9,6 +9,10 @@ if not find_program('xgettext', required: false).found() error('MESON_SKIP_TEST xgettext command not found') endif +if host_machine.system() == 'darwin' + error('MESON_SKIP_TEST test is unstable on macOS for unknown reasons') +endif + i18n = import('i18n') xgettext_args = ['-ktr', '--add-comments=TRANSLATOR:', '--from-code=UTF-8'] diff --git a/test cases/frameworks/38 gettext extractor/test.json b/test cases/frameworks/38 gettext extractor/test.json index c5952ffd5..032698e20 100644 --- a/test cases/frameworks/38 gettext extractor/test.json +++ b/test cases/frameworks/38 gettext extractor/test.json @@ -2,5 +2,5 @@ "installed": [ { "type": "file", "file": "usr/intl/main.pot" } ], - "expect_skip_on_jobname": ["azure", "cygwin"] + "expect_skip_on_jobname": ["azure", "cygwin", "macos"] } |
