summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cmd_line.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_cmd_line.py')
-rw-r--r--Lib/test/test_cmd_line.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py
index eaf19aa..866c7d1 100644
--- a/Lib/test/test_cmd_line.py
+++ b/Lib/test/test_cmd_line.py
@@ -803,6 +803,7 @@ class CmdLineTest(unittest.TestCase):
def test_pythonmalloc(self):
# Test the PYTHONMALLOC environment variable
pymalloc = support.with_pymalloc()
+ mimalloc = support.with_mimalloc()
if pymalloc:
default_name = 'pymalloc_debug' if support.Py_DEBUG else 'pymalloc'
default_name_debug = 'pymalloc_debug'
@@ -821,6 +822,11 @@ class CmdLineTest(unittest.TestCase):
('pymalloc', 'pymalloc'),
('pymalloc_debug', 'pymalloc_debug'),
))
+ if mimalloc:
+ tests.extend((
+ ('mimalloc', 'mimalloc'),
+ ('mimalloc_debug', 'mimalloc_debug'),
+ ))
for env_var, name in tests:
with self.subTest(env_var=env_var, name=name):