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_multiprocessing failure on Windows XP
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, ncoghlan, pitrou, python-dev, sbt, vstinner
Priority: release blocker Keywords: buildbot

Created on 2012-08-01 13:17 by ncoghlan, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg167125 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-08-01 13:17
test_multiprocessing failed on one of the XP buildbots with a permission error:

http://buildbot.python.org/all/builders/x86%20XP-4%203.x/builds/7223/steps/test/logs/stdio

The immediate rerun also failed, but the one at the end of the test run succeeded.
msg167145 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-08-01 16:44
New changeset b99a82bc2cde by Richard Oudkerk in branch 'default':
Issue #15525: Increase timeout when TerminateProcess() fails
http://hg.python.org/cpython/rev/b99a82bc2cde
msg167146 - (view) Author: Richard Oudkerk (sbt) * (Python committer) Date: 2012-08-01 16:48
I would guess that the process has already terminated (or is being torn down) but the timeout is not long enough to let the parent join child.

Let's see if increasing the timeout fixes the failures.
msg167175 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2012-08-01 22:27
> Let's see if increasing the timeout fixes the failures.

At least, the 3 following builds succeed (let's see the next builds).
msg167310 - (view) Author: Richard Oudkerk (sbt) * (Python committer) Date: 2012-08-03 12:07
Looks like it is fixed.
History
Date User Action Args
2022-04-11 14:57:33adminsetgithub: 59730
2012-08-03 12:07:11sbtsetstatus: open -> closed
resolution: fixed
messages: + msg167310

stage: needs patch -> resolved
2012-08-01 22:27:20vstinnersetnosy: + vstinner
messages: + msg167175
2012-08-01 22:26:30vstinnersetnosy: + pitrou
2012-08-01 16:48:12sbtsetmessages: + msg167146
2012-08-01 16:44:59python-devsetnosy: + python-dev
messages: + msg167145
2012-08-01 13:17:39ncoghlancreate