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_shutil does not clean up after itself
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: larry Nosy List: georg.brandl, hynek, larry, python-dev, r.david.murray
Priority: release blocker Keywords: buildbot, patch

Created on 2012-06-26 01:54 by r.david.murray, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
larry.fix.shutil.test.tmp.dirs.1.diff larry, 2012-06-26 04:21 Patch #1. review
Messages (8)
msg164026 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-06-26 01:54
test_shutil leaves several (six) directories in /tmp.  This eventually fills /tmp on my buildbots and causes subsequent test runs to fail.
msg164030 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2012-06-26 04:21
Patch attached.  On my machine it used to leave six directories, now it leaves none.
msg164032 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2012-06-26 04:32
Georg, you want this fixed for beta 1?
msg164038 - (view) Author: Hynek Schlawack (hynek) * (Python committer) Date: 2012-06-26 05:30
LGTM
msg164047 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012-06-26 06:32
Yep.
msg164050 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2012-06-26 06:54
This was fixed in 1fa50bbcc21f1458c1dc00ea733b76e6405b8cbb . (I think the tracker had an aneurysm when the notification showed up.)
msg164051 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-06-26 07:15
New changeset 6b1d4e3ce867 by Larry Hastings in branch 'default':
Fix issue # in Misc/NEWS (should be #15187, not 15817.)
http://hg.python.org/cpython/rev/6b1d4e3ce867
msg164052 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2012-06-26 07:16
(No wonder it had an aneurysm!)
History
Date User Action Args
2022-04-11 14:57:32adminsetgithub: 59392
2012-06-26 07:16:30larrysetmessages: + msg164052
2012-06-26 07:15:27python-devsetnosy: + python-dev
messages: + msg164051
2012-06-26 06:54:31larrysetmessages: + msg164050
2012-06-26 06:51:16larrysetpriority: normal -> release blocker
assignee: larry
status: open -> closed
resolution: fixed
stage: needs patch -> resolved
2012-06-26 06:32:44georg.brandlsetmessages: + msg164047
2012-06-26 05:30:12hyneksetmessages: + msg164038
2012-06-26 04:32:28larrysetnosy: + georg.brandl
messages: + msg164032
2012-06-26 04:21:22larrysetfiles: + larry.fix.shutil.test.tmp.dirs.1.diff
keywords: + patch
messages: + msg164030
2012-06-26 04:10:51larrysetnosy: + larry
2012-06-26 01:54:53r.david.murraycreate