Skip to content

Commit 1857a40

Browse files
authored
gh-143460: Correct unlimited stack size skip for Emscripten (#143765)
Modifies the test skip for unlimited stack size to add Emscripten to the exclusion list.
1 parent 2873c31 commit 1857a40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/support/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1781,7 +1781,7 @@ def skip_if_unlimited_stack_size(test):
17811781
17821782
See https://github.com/python/cpython/issues/143460.
17831783
"""
1784-
if is_wasi or os.name == "nt":
1784+
if is_emscripten or is_wasi or os.name == "nt":
17851785
return test
17861786

17871787
import resource

0 commit comments

Comments
 (0)