diff options
author | neonene <53406459+neonene@users.noreply.github.com> | 2022-07-13 16:08:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 16:08:12 (GMT) |
commit | 4a6bb30eb600e3b18f4a84c1be922c07758c613f (patch) | |
tree | 39174bdf5d3366d90de27d25d91e12210b84ac46 /Programs/_testembed.c | |
parent | ed06ec1ab851544234138952d357facb32eba6c5 (diff) | |
download | cpython-4a6bb30eb600e3b18f4a84c1be922c07758c613f.zip cpython-4a6bb30eb600e3b18f4a84c1be922c07758c613f.tar.gz cpython-4a6bb30eb600e3b18f4a84c1be922c07758c613f.tar.bz2 |
gh-90815: Fix test_embed for Windows PGO build with mimalloc (GH-94790)
Fixes the failure of PGO building with `mimalloc` on Windows, ensuring that `test_bpo20891` does not break profiling data (`python31*.pgc`).
Diffstat (limited to 'Programs/_testembed.c')
-rw-r--r-- | Programs/_testembed.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c index 542e469..6b43d53 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -368,6 +368,8 @@ static int test_bpo20891(void) PyThread_free_lock(lock); + Py_Finalize(); + return 0; } |