diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-05-22 23:56:02 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-05-23 11:26:53 +0100 |
commit | cdb91f493e3d3c3c73047e74b83c87be126c7fa6 (patch) | |
tree | 564c1e43ebf010f97b40f68f78b8806fc1d52838 /run_unittests.py | |
parent | 293da385460b82b44cb08216cda6967400ad64f2 (diff) | |
download | meson-cdb91f493e3d3c3c73047e74b83c87be126c7fa6.zip meson-cdb91f493e3d3c3c73047e74b83c87be126c7fa6.tar.gz meson-cdb91f493e3d3c3c73047e74b83c87be126c7fa6.tar.bz2 |
Disable D test on macOS as it fails mysteriously.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 89706df..25e7c31 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3826,6 +3826,11 @@ class AllPlatformTests(BasePlatformTests): except EnvironmentException: pass + # The D template fails under mac CI and we don't know why. + # Patches welcome + if is_osx(): + langs = [l for l in langs if l != 'd'] + for lang in langs: for target_type in ('executable', 'library'): # test empty directory |