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.

Author r.david.murray
Recipients eric.araujo, jcea, r.david.murray, skrah, vstinner
Date 2011-04-30.23:49:06
SpamBayes Score 1.4620684e-08
Marked as misclassified No
Message-id <1304207348.56.0.739452461877.issue11873@psf.upfronthosting.co.za>
In-reply-to
Content
The failing test is launching a subprocess to compile python code, waiting for the subprocess to exit, and then checking to see if the file was created.  So the timing issue would appear to be that the file created by the subprocess doesn't appear to exist to the main program even after the subprocess has exited.  Stefan, Jesus, do either of you know of anything about the file systems used on your buildbots that might give rise to this problem?  Is there some sort of file system sync call we need to make to make sure different processes have the same view of the file system?

However, if my theory is true I would expect that other tests in test_compileall would also fail randomly.  Does anyone know if it is always test_regexp?
History
Date User Action Args
2011-04-30 23:49:08r.david.murraysetrecipients: + r.david.murray, jcea, vstinner, eric.araujo, skrah
2011-04-30 23:49:08r.david.murraysetmessageid: <1304207348.56.0.739452461877.issue11873@psf.upfronthosting.co.za>
2011-04-30 23:49:06r.david.murraylinkissue11873 messages
2011-04-30 23:49:06r.david.murraycreate