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/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/test cases/python3/2 extmodule/meson.build b/test cases/python3/2 extmodule/meson.build
index 582a14e8e..25e2c63b0 100644
--- a/test cases/python3/2 extmodule/meson.build
+++ b/test cases/python3/2 extmodule/meson.build
@@ -4,13 +4,15 @@ project('Python extension module', 'c',
# 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.')