This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_freeze doesn't clean up after itself
Type: Stage: resolved
Components: Tests Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Mark.Shannon, eric.snow, xtreak
Priority: normal Keywords:

Created on 2021-11-05 11:17 by Mark.Shannon, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (4)
msg405784 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2021-11-05 11:17
test_tools leaves a copy of the source in Tools/freeze/test/outdir/

which messes up grep and other tools used for searching the source.
msg406399 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2021-11-16 11:45
test_tools also seems to fail a lot unless `make clean` is run first.
Possibly related?
msg406401 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2021-11-16 12:16
https://github.com/python/cpython/pull/29527 uses a temporary directory for the test instead that should help with the cleanup.
msg407525 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2021-12-02 12:23
This seems to be fixed.
History
Date User Action Args
2022-04-11 14:59:52adminsetgithub: 89888
2021-12-02 12:23:48Mark.Shannonsetstatus: open -> closed
resolution: fixed
messages: + msg407525

stage: resolved
2021-11-16 12:16:42xtreaksetnosy: + xtreak
messages: + msg406401
2021-11-16 11:45:45Mark.Shannonsetmessages: + msg406399
2021-11-05 11:17:21Mark.Shannoncreate