File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -1773,17 +1773,15 @@ def skip_if_pgo_task(test):
17731773
17741774
17751775def skip_if_unlimited_stack_size (test ):
1776- """
1777- Skip decorator for tests not run when an unlimited stack size is configured.
1776+ """Skip decorator for tests not run when an unlimited stack size is configured.
17781777
1779- Tests using support.infinite_recursion([...]) may otherwise run into an infinite loop,
1780- running until the memory on the system is filled and crashing due to OOM.
1778+ Tests using support.infinite_recursion([...]) may otherwise run into
1779+ an infinite loop, running until the memory on the system is filled and
1780+ crashing due to OOM.
17811781
1782- See gh-143460: Python 3.14/3.15a build aborting due to OOM during test_functools / test_json
1782+ See https://github.com/python/cpython/issues/143460.
17831783 """
1784- if is_wasi :
1785- return test
1786- if sys .platform .startswith ('win' ):
1784+ if is_wasi or os .name == "nt" :
17871785 return test
17881786
17891787 import resource
You can’t perform that action at this time.
0 commit comments