[issue8719] buildbot: segfault on FreeBSD (signal 11)

STINNER Victor report at bugs.python.org
Tue Jan 4 12:29:46 CET 2011


STINNER Victor <victor.stinner at haypocalc.com> added the comment:

> That may be what you meant, but "installed on this host" made me think
> I could do something external on the buildbot which I don't 
> think would work given that the module has to be called from within
> the tests themselves?

If you install faulthandler on "x86 FreeBSD 7.2 3.x" buildbot, I can create a special branch to add specific code.

Or I can add:

try:
    import faulthandler
except ImportError:
    pass
else:
    faulthandler.enable()

In py3k (eg. in Lib/test/support.py).

But the problem is now different: it looks like the bug was fixed, I don't see crashes anymore on  "x86 FreeBSD 7.2 3.x" buildbot :-)

There was failures on test_concurrent_futures, but Martin fixed it in #10798 (not completly (?) but it's better).

I close the issue because it looks like the crash was fixed. Reopen the issue if the crash occurs again.

----------
resolution:  -> fixed
status: open -> closed

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


More information about the Python-bugs-list mailing list