From: Hood Chatham Date: Thu, 19 Jun 2025 21:27:02 +0000 (-0700) Subject: gh-127146: Add skip_emscripten_stack_overflow in a few places (#135722) X-Git-Tag: v3.15.0a1~1239 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c8c13f8036051c2858956905769b7b9dfde4bbd7;p=thirdparty%2FPython%2Fcpython.git gh-127146: Add skip_emscripten_stack_overflow in a few places (#135722) More tests that hit stack limits on some platforms. --- diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 175ef5313868..57d0656487d4 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -1445,6 +1445,7 @@ class ExceptionTests(unittest.TestCase): foo() support.gc_collect() + @support.skip_emscripten_stack_overflow() @cpython_only def test_recursion_normalizing_exception(self): import_module("_testinternalcapi") @@ -1522,6 +1523,7 @@ class ExceptionTests(unittest.TestCase): self.assertIn(b'Done.', out) + @support.skip_emscripten_stack_overflow() def test_recursion_in_except_handler(self): def set_relative_recursion_limit(n):