mirror of
https://github.com/python/cpython.git
synced 2025-08-27 12:16:04 +00:00
Issue #20532: Tests which use _testcapi now are marked as CPython only.
This commit is contained in:
parent
fe4ef392d5
commit
5cfc79deae
25 changed files with 239 additions and 106 deletions
|
@ -3,7 +3,7 @@ Tests for the threading module.
|
|||
"""
|
||||
|
||||
import test.support
|
||||
from test.support import verbose, strip_python_stderr, import_module
|
||||
from test.support import verbose, strip_python_stderr, import_module, cpython_only
|
||||
from test.script_helper import assert_python_ok
|
||||
|
||||
import random
|
||||
|
@ -773,6 +773,7 @@ class ThreadJoinOnShutdown(BaseTestCase):
|
|||
for t in threads:
|
||||
t.join()
|
||||
|
||||
@cpython_only
|
||||
@unittest.skipIf(_testcapi is None, "need _testcapi module")
|
||||
def test_frame_tstate_tracing(self):
|
||||
# Issue #14432: Crash when a generator is created in a C thread that is
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue