Skip to content

Commit 7e713fe

Browse files
brettcannonvstinner
authored andcommitted
pythonGH-115983: skip building shared modules for testing under WASI (pythonGH-116528)
1 parent 0b6b348 commit 7e713fe

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Skip building test modules that must be built as shared under WASI.

configure

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

+8
Original file line numberDiff line numberDiff line change
@@ -7398,11 +7398,19 @@ AS_CASE([$ac_sys_system],
73987398
[Emscripten/node*], [],
73997399
[WASI/*], [
74007400
dnl WASI SDK 15.0 does not support file locking, mmap, and more.
7401+
dnl Test modules that must be compiled as shared libraries are not supported
7402+
dnl (see Modules/Setup.stdlib.in).
74017403
PY_STDLIB_MOD_SET_NA(
74027404
[_ctypes_test],
7405+
[_testexternalinspection],
7406+
[_testimportmultiple],
7407+
[_testmultiphase],
7408+
[_testsinglephase],
74037409
[fcntl],
74047410
[mmap],
74057411
[termios],
7412+
[xxlimited],
7413+
[xxlimited_35],
74067414
)
74077415
]
74087416
)

0 commit comments

Comments
 (0)