summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-09-24 22:23:17 (GMT)
committerGitHub <noreply@github.com>2024-09-24 22:23:17 (GMT)
commit2f25d855dffe03a5f15ad8709d495f8dc9daae27 (patch)
treef28d09aceadf497936fca4061994bb0d24275780
parent8c0c3443f39cd8a7d177516e814082f8bdb46f63 (diff)
downloadcpython-2f25d855dffe03a5f15ad8709d495f8dc9daae27.zip
cpython-2f25d855dffe03a5f15ad8709d495f8dc9daae27.tar.gz
cpython-2f25d855dffe03a5f15ad8709d495f8dc9daae27.tar.bz2
[3.13] gh-124402: Require cpu resource in test_super slow method (GH-124434) (#124468)
gh-124402: Require cpu resource in test_super slow method (GH-124434) test___class___modification_multithreaded() now requires the 'cpu' test resource on a Free Threaded build. (cherry picked from commit 5a605660745d32a9b9f4208666889c702527208c) Co-authored-by: Victor Stinner <vstinner@python.org>
-rw-r--r--Lib/test/test_super.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_super.py b/Lib/test/test_super.py
index 3ffbe03..b0d1f12 100644
--- a/Lib/test/test_super.py
+++ b/Lib/test/test_super.py
@@ -4,6 +4,7 @@ import textwrap
import threading
import unittest
from unittest.mock import patch
+from test import support
from test.support import import_helper, threading_helper
@@ -513,6 +514,11 @@ class TestSuper(unittest.TestCase):
This should be the case anyways as our test suite sets
an audit hook.
"""
+
+ if support.Py_GIL_DISABLED:
+ # gh-124402: On a Free Threaded build, the test takes a few minutes
+ support.requires('cpu')
+
class Foo:
pass