]> granicus.if.org Git - python/commit
Attempt to fix build failure on OS X and Debian alpha; the symptom is
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 26 Jun 2006 17:00:35 +0000 (17:00 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 26 Jun 2006 17:00:35 +0000 (17:00 +0000)
commit15486f78f0ccb04b86905b175c004a5b4c4f785e
treebcc64edf200f883e9af414c0a4d8922e032b9638
parentec3c368195c66d2ed044e4de713824c64e05694d
Attempt to fix build failure on OS X and Debian alpha; the symptom is
consistent with os.wait() returning immediately because some other
subprocess had previously exited; the test suite then immediately
tries to lock the mailbox and gets an error saying it's already
locked.

To fix this, do a waitpid() so the test suite only continues once
the intended child process has exited.
Lib/test/test_mailbox.py