diff options
author | Ken Jin <kenjin@python.org> | 2024-02-23 18:43:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 18:43:52 (GMT) |
commit | 3d8fc06d4f8dc1e7be2455a7e89b37285fa89112 (patch) | |
tree | f57ffd1f4c995f64d8b9eaefd831fa087c17fe2a /Lib | |
parent | e4561e050148f6dc347e8c7ba30c8125b5fc0e45 (diff) | |
download | cpython-3d8fc06d4f8dc1e7be2455a7e89b37285fa89112.zip cpython-3d8fc06d4f8dc1e7be2455a7e89b37285fa89112.tar.gz cpython-3d8fc06d4f8dc1e7be2455a7e89b37285fa89112.tar.bz2 |
gh-115859: Disable the tier 2 redundancy eliminator by default (GH-115860)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_capi/test_opt.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_capi/test_opt.py b/Lib/test/test_capi/test_opt.py index 38c6fa4..25fc36d 100644 --- a/Lib/test/test_capi/test_opt.py +++ b/Lib/test/test_capi/test_opt.py @@ -4,6 +4,7 @@ import sys import textwrap import unittest import gc +import os import _testinternalcapi @@ -568,6 +569,8 @@ class TestUops(unittest.TestCase): count = ops.count("_GUARD_IS_TRUE_POP") + ops.count("_GUARD_IS_FALSE_POP") self.assertLessEqual(count, 2) + +@unittest.skipIf(os.getenv("PYTHONUOPSOPTIMIZE", default=0) == 0, "Needs uop optimizer to run.") class TestUopsOptimization(unittest.TestCase): def _run_with_optimizer(self, testfunc, arg): |