Message142402
| Author |
neologix |
| Recipients |
gabriele.trombetti, gregory.p.smith, neologix, python-dev, rosslagerwall, vstinner |
| Date |
2011年08月18日.21:43:03 |
| SpamBayes Score |
0.00037387403 |
| Marked as misclassified |
No |
| Message-id |
<1313703784.55.0.731642609103.issue12650@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Reopening.
The new tests are failing on solaris and Debian parallel buildbots:
http://www.python.org/dev/buildbot/all/builders/x86 debian parallel 3.x/builds/2734/steps/test/logs/stdio
http://www.python.org/dev/buildbot/all/builders/sparc solaris10 gcc 3.x/builds/3528/steps/test/logs/stdio
"""
======================================================================
FAIL: test_zombie_fast_process_del (test.test_subprocess.POSIXProcessTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home2/buildbot2/slave/3.x.loewis-parallel/build/Lib/test/test_subprocess.py", line 1519, in test_zombie_fast_process_del
self.assertRaises(OSError, os.waitpid, pid, 0)
AssertionError: OSError not raised by waitpid
"""
I've no idea what's going on here...
This means that the child process didn't get reaped by _cleanup().
It could also maybe be due to the first child's PID being reused immediately by the second. |
|