summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-09-06 02:02:05 (GMT)
committerGitHub <noreply@github.com>2024-09-06 02:02:05 (GMT)
commitfb50266c4b67e03bd1b2a81ed5bb0eaf82b3e08f (patch)
tree7b30762a71d71942c96312a0bea741cfb6b23401
parent92b9c4482fb59b5fabd810474206217abcb552bf (diff)
downloadcpython-fb50266c4b67e03bd1b2a81ed5bb0eaf82b3e08f.zip
cpython-fb50266c4b67e03bd1b2a81ed5bb0eaf82b3e08f.tar.gz
cpython-fb50266c4b67e03bd1b2a81ed5bb0eaf82b3e08f.tar.bz2
[3.13] gh-123275: Add tests for `PYTHON_GIL=1` and `-Xgil=1` (gh-123754) (gh-123755)
gh-123275: Add tests for `PYTHON_GIL=1` and `-Xgil=1` (gh-123754) (cherry picked from commit fe24b718d231317516f96f896e7c17a4166f25a7) Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
-rw-r--r--Lib/test/test_cmd_line.py22
1 files changed, 16 insertions, 6 deletions
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py
index 9624d35..dc420f3 100644
--- a/Lib/test/test_cmd_line.py
+++ b/Lib/test/test_cmd_line.py
@@ -879,19 +879,29 @@ class CmdLineTest(unittest.TestCase):
self.assertEqual(proc.stdout.rstrip(), 'True')
self.assertEqual(proc.returncode, 0, proc)
- @unittest.skipUnless(support.Py_GIL_DISABLED,
- "PYTHON_GIL and -X gil only supported in Py_GIL_DISABLED builds")
def test_python_gil(self):
cases = [
# (env, opt, expected, msg)
- (None, None, 'None', "no options set"),
- ('0', None, '0', "PYTHON_GIL=0"),
('1', None, '1', "PYTHON_GIL=1"),
- ('1', '0', '0', "-X gil=0 overrides PYTHON_GIL=1"),
- (None, '0', '0', "-X gil=0"),
(None, '1', '1', "-X gil=1"),
]
+ if support.Py_GIL_DISABLED:
+ cases.extend(
+ [
+ (None, None, 'None', "no options set"),
+ ('0', None, '0', "PYTHON_GIL=0"),
+ ('1', '0', '0', "-X gil=0 overrides PYTHON_GIL=1"),
+ (None, '0', '0', "-X gil=0"),
+ ]
+ )
+ else:
+ cases.extend(
+ [
+ (None, None, '1', '-X gil=0 (unsupported by this build)'),
+ ('1', None, '1', 'PYTHON_GIL=0 (unsupported by this build)'),
+ ]
+ )
code = "import sys; print(sys.flags.gil)"
environ = dict(os.environ)