aboutsummaryrefslogtreecommitdiff
path: root/test cases/python/9 extmodule limited api/meson.build
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2024-06-12 00:23:14 +0300
committerGitHub <noreply@github.com>2024-06-12 00:23:14 +0300
commit0352c900bc33ae2796d1e0881986f2163b7e256d (patch)
tree4025059959d0eafe947a61ee3a0d0d1fe269bc3c /test cases/python/9 extmodule limited api/meson.build
parent1d4c0311119fc23d1c40435626030c5c98af7b26 (diff)
parent328011f77a1cef00655a697cd2e503a97754b745 (diff)
downloadmeson-0352c900bc33ae2796d1e0881986f2163b7e256d.zip
meson-0352c900bc33ae2796d1e0881986f2163b7e256d.tar.gz
meson-0352c900bc33ae2796d1e0881986f2163b7e256d.tar.bz2
Merge pull request #13171 from amcn/mingw-python-limited-api
Python: Fix limited API under mingw
Diffstat (limited to 'test cases/python/9 extmodule limited api/meson.build')
-rw-r--r--test cases/python/9 extmodule limited api/meson.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/python/9 extmodule limited api/meson.build b/test cases/python/9 extmodule limited api/meson.build
index 68afc96..bdf1b7b 100644
--- a/test cases/python/9 extmodule limited api/meson.build
+++ b/test cases/python/9 extmodule limited api/meson.build
@@ -14,3 +14,10 @@ ext_mod = py.extension_module('not_limited',
'not_limited.c',
install: true,
)
+
+test('load-test',
+ py,
+ args: [files('test_limited.py')],
+ env: { 'PYTHONPATH': meson.current_build_dir() },
+ workdir: meson.current_source_dir()
+)