mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
[3.13] gh-121110: Temporarily Skip test_basic_multiple_interpreters_reset_each (gh-121238)
This will allow Py_TRACE_REFS builds to pass the test suite, until the underlying issue can be resolved.
(cherry picked from commit 9bcb7d8c6f
, AKA gh-121236)
Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
This commit is contained in:
parent
931c168219
commit
fc0b1cbdfe
1 changed files with 7 additions and 0 deletions
|
@ -3053,6 +3053,13 @@ class SinglephaseInitTests(unittest.TestCase):
|
|||
def test_basic_multiple_interpreters_reset_each(self):
|
||||
# resetting between each interpreter
|
||||
|
||||
if Py_TRACE_REFS:
|
||||
# It's a Py_TRACE_REFS build.
|
||||
# This test breaks interpreter isolation a little,
|
||||
# which causes problems on Py_TRACE_REF builds.
|
||||
# See gh-121110.
|
||||
raise unittest.SkipTest('crashes on Py_TRACE_REFS builds')
|
||||
|
||||
# At this point:
|
||||
# * alive in 0 interpreters
|
||||
# * module def may or may not be loaded already
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue