Skip to content

Commit 95fe86e

Browse files
[3.14] gh-143460: Correct unlimited stack size skip for Emscripten (GH-143765) (#143819)
Modifies the test skip for unlimited stack size to add Emscripten to the exclusion list. (cherry picked from commit 1857a40) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
1 parent 9c834b4 commit 95fe86e

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
@@ -1694,7 +1694,7 @@ def skip_if_unlimited_stack_size(test):
16941694
16951695
See https://github.com/python/cpython/issues/143460.
16961696
"""
1697-
if is_wasi or os.name == "nt":
1697+
if is_emscripten or is_wasi or os.name == "nt":
16981698
return test
16991699

17001700
import resource

0 commit comments

Comments
 (0)