[issue11873] test_regexp() of test_compileall failure on "x86 OpenIndiana 3.x"

R. David Murray report at bugs.python.org
Sun May 1 01:49:08 CEST 2011


R. David Murray <rdmurray at bitdance.com> added the comment:

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?

----------
nosy: +jcea, skrah

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue11873>
_______________________________________


More information about the Python-bugs-list mailing list