commit | 15486f78f0ccb04b86905b175c004a5b4c4f785e | [log] [tgz] |
---|---|---|
author | Andrew M. Kuchling <amk@amk.ca> | Mon Jun 26 17:00:35 2006 +0000 |
committer | Andrew M. Kuchling <amk@amk.ca> | Mon Jun 26 17:00:35 2006 +0000 |
tree | bcc64edf200f883e9af414c0a4d8922e032b9638 | |
parent | ec3c368195c66d2ed044e4de713824c64e05694d [diff] |
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.