summaryrefslogtreecommitdiff
path: root/test cases/python3/2 extmodule
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/python3/2 extmodule')
-rw-r--r--test cases/python3/2 extmodule/ext/meson.build15
-rw-r--r--test cases/python3/2 extmodule/meson.build5
2 files changed, 6 insertions, 14 deletions
diff --git a/test cases/python3/2 extmodule/ext/meson.build b/test cases/python3/2 extmodule/ext/meson.build
index 7d67953cb..d5d8849e3 100644
--- a/test cases/python3/2 extmodule/ext/meson.build
+++ b/test cases/python3/2 extmodule/ext/meson.build
@@ -1,17 +1,6 @@
-if host_machine.system() == 'darwin'
- # Default suffix is 'dylib' but Python does not use for extensions.
- suffix = 'so'
-elif host_machine.system() == 'windows'
- # On Windows the extension is pyd for some unexplainable reason.
- suffix = 'pyd'
-else
- suffix = []
-endif
-
-pylib = shared_library('tachyon',
+pylib = py3_mod.extension_module('tachyon',
'tachyon_module.c',
dependencies : py3_dep,
- name_prefix : '',
- name_suffix : suffix)
+)
pypathdir = meson.current_build_dir()
diff --git a/test cases/python3/2 extmodule/meson.build b/test cases/python3/2 extmodule/meson.build
index 92a12b259..25e2c63b0 100644
--- a/test cases/python3/2 extmodule/meson.build
+++ b/test cases/python3/2 extmodule/meson.build
@@ -3,13 +3,16 @@ project('Python extension module', 'c',
# Because Windows Python ships only with optimized libs,
# we must build this project the same way.
+py3_mod = import('python3')
+py3 = py3_mod.find_python()
py3_dep = dependency('python3', required : false)
if py3_dep.found()
subdir('ext')
test('extmod',
- find_program('blaster.py'),
+ py3,
+ args : files('blaster.py'),
env : ['PYTHONPATH=' + pypathdir])
else
error('MESON_SKIP_TEST: Python3 libraries not found, skipping test.')