mirror of https://github.com/python/cpython
bpo-46263: Fix second location that needs MALLOC_CONF on FreeBSD (GH-30440)
Automerge-Triggered-By: GH:tiran
This commit is contained in:
parent
16dfabf75c
commit
c9137d4b63
|
@ -933,7 +933,11 @@ class PyMemDebugTests(unittest.TestCase):
|
|||
except _testcapi.error:
|
||||
os._exit(1)
|
||||
''')
|
||||
assert_python_ok('-c', code, PYTHONMALLOC=self.PYTHONMALLOC)
|
||||
assert_python_ok(
|
||||
'-c', code,
|
||||
PYTHONMALLOC=self.PYTHONMALLOC,
|
||||
MALLOC_CONF="junk:false",
|
||||
)
|
||||
|
||||
def test_pyobject_null_is_freed(self):
|
||||
self.check_pyobject_is_freed('check_pyobject_null_is_freed')
|
||||
|
|
Loading…
Reference in New Issue