summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2023-03-31 14:34:19 +0200
committerStefan Behnel <stefan_ml@behnel.de>2023-03-31 14:46:12 +0200
commitf7c073ff83e7489e32f1264c6837f38555a62e5b (patch)
treecb181f1aeb77207b0b4ada305bc5fa953e24607e
parentd5c014f63d422b1d1e004bc0e9a37907ab29c1cb (diff)
downloadcython-f7c073ff83e7489e32f1264c6837f38555a62e5b.tar.gz
Disable "pylong" and "longintrepr" tests in Py3.12 that accessed PyLongObject struct fields that were removed.
-rwxr-xr-xruntests.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/runtests.py b/runtests.py
index fc09dc019..4e21a2103 100755
--- a/runtests.py
+++ b/runtests.py
@@ -503,8 +503,11 @@ VER_DEP_MODULES = {
]),
(3,8): (operator.lt, lambda x: x in ['run.special_methods_T561_py38',
]),
- (3,11,999): (operator.gt, lambda x: x in ['run.py_unicode_strings',
- ]),
+ (3,11,999): (operator.gt, lambda x: x in [
+ 'run.py_unicode_strings', # Py_UNICODE was removed
+ 'compile.pylong', # PyLongObject changed its structure
+ 'run.longintrepr', # PyLongObject changed its structure
+ ]),
}