diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2024-06-12 00:23:14 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-12 00:23:14 +0300 |
| commit | 0352c900bc33ae2796d1e0881986f2163b7e256d (patch) | |
| tree | 4025059959d0eafe947a61ee3a0d0d1fe269bc3c /test cases/python/9 extmodule limited api/meson.build | |
| parent | 1d4c0311119fc23d1c40435626030c5c98af7b26 (diff) | |
| parent | 328011f77a1cef00655a697cd2e503a97754b745 (diff) | |
| download | meson-0352c900bc33ae2796d1e0881986f2163b7e256d.tar.gz | |
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.build | 7 |
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 68afc9699..bdf1b7b90 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() +) |
