summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-11-18 11:00:14 -0800
committerEli Schwartz <eschwartz93@gmail.com>2021-11-18 16:55:14 -0500
commit89c133b3db0522769c717aa878699cf19ab5f83d (patch)
tree7e5e311f8b85b484255d11b0f32395a83fee6b26 /test cases
parent4f4259de1b0d40c385d017675245e5d662017d0e (diff)
downloadmeson-89c133b3db0522769c717aa878699cf19ab5f83d.tar.gz
tests: remove extraframework test for python
This tries to link the system provided python, which is deprecated and will result in an ambiguous error like "your binary is not an allowed client of .../Library/Frameworks/python.framework/python.tbd for architecture x86_64".
Diffstat (limited to 'test cases')
-rw-r--r--test cases/osx/5 extra frameworks/meson.build3
1 files changed, 0 insertions, 3 deletions
diff --git a/test cases/osx/5 extra frameworks/meson.build b/test cases/osx/5 extra frameworks/meson.build
index cb4847ea6..0bd2c17fe 100644
--- a/test cases/osx/5 extra frameworks/meson.build
+++ b/test cases/osx/5 extra frameworks/meson.build
@@ -6,8 +6,5 @@ assert(dep_libs.type_name() == 'extraframeworks', 'type_name is ' + dep_libs.typ
dep_main = dependency('Foundation')
assert(dep_main.type_name() == 'extraframeworks', 'type_name is ' + dep_main.type_name())
-dep_py = dependency('python', method : 'extraframework')
-assert(dep_main.type_name() == 'extraframeworks', 'type_name is ' + dep_main.type_name())
-
stlib = static_library('stat', 'stat.c', install : true, dependencies: dep_libs)
exe = executable('prog', 'prog.c', install : true, dependencies: dep_main)