Fix Python stack overflow checking in MODE=dbg

This commit is contained in:
Justine Tunney 2023-02-23 08:11:35 -08:00
parent 8b69acc1cc
commit 18a24935cc
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
8 changed files with 10 additions and 545 deletions

View file

@ -236,7 +236,6 @@ THIRD_PARTY_PYTHON_INCS = \
third_party/python/Python/opcode_targets.inc \
third_party/python/Python/wordcode_helpers.inc \
third_party/python/Python/ceval_gil.inc \
third_party/python/Python/thread_nt.inc \
third_party/python/Python/clinic/import.inc \
third_party/python/Python/clinic/bltinmodule.inc \
third_party/python/Modules/expat/asciitab.inc \
@ -1979,6 +1978,8 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_zipapp.py \
third_party/python/Lib/test/test_zlib.py
# TODO: test_threading passing probably requires more mutexes in libc/calls/
THIRD_PARTY_PYTHON_PYTEST_TODOS = \
third_party/python/Lib/test/test_threading.py \
third_party/python/Lib/test/test_threading_local.py \