Skip to content

Commit 26f9381

Browse files
committed
gh-117645: Skip test_dynamic global specialization on WASI
Skip test_load_global_specialization_failure_keeps_oparg() of test_dynamic on WASI build. The test uses too much stack memory.
1 parent 24a2bd0 commit 26f9381

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_dynamic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def test_eval_gives_lambda_custom_globals(self):
134134

135135
self.assertEqual(foo(), 7)
136136

137-
@unittest.skipIf(is_wasi and Py_DEBUG, "stack depth too shallow in pydebug WASI")
137+
@unittest.skipIf(is_wasi, "stack depth too shallow in WASI")
138138
def test_load_global_specialization_failure_keeps_oparg(self):
139139
# https://github.com/python/cpython/issues/91625
140140
class MyGlobals(dict):

0 commit comments

Comments
 (0)