From 10197aa9d140211feeefeccfaae1d2a64c69d2d3 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Fri, 23 Apr 2021 19:16:44 +0300 Subject: Xcode: a few more skips. --- test cases/common/171 generator link whole/meson.build | 4 ++++ .../173 identical target name in subproject flat layout/meson.build | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/test cases/common/171 generator link whole/meson.build b/test cases/common/171 generator link whole/meson.build index 30ae9c6..106153a 100644 --- a/test cases/common/171 generator link whole/meson.build +++ b/test cases/common/171 generator link whole/meson.build @@ -1,5 +1,9 @@ project('generator link_whole', 'c') +if meson.backend() == 'xcode' + error('MESON_SKIP_TEST: whole-archive not supported in Xcode. Patches welcome.') +endif + cc = meson.get_compiler('c') if cc.get_id() == 'msvc' if cc.version().version_compare('<19') diff --git a/test cases/common/173 identical target name in subproject flat layout/meson.build b/test cases/common/173 identical target name in subproject flat layout/meson.build index d859fda..ce1d4b8 100644 --- a/test cases/common/173 identical target name in subproject flat layout/meson.build +++ b/test cases/common/173 identical target name in subproject flat layout/meson.build @@ -1,5 +1,9 @@ project('subproject targets', 'c') +if meson.backend() == 'xcode' + error('MESON_SKIP_TEST: many targets with the same name not supported in Xcode. Patches welcome.') +endif + # Idea behind this test is to create targets with identical name # but different output files. We can do this by choosing different # name_prefix of libraries. Target id does not depend on name_prefix. -- cgit v1.1