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 vstinner
Recipients db3l, mark.dickinson, skrah, vstinner
Date 2011-01-04.11:29:41
SpamBayes Score 1.327044e-11
Marked as misclassified No
Message-id <1294140586.16.0.202341201338.issue8719@psf.upfronthosting.co.za>
In-reply-to
Content
> 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.
History
Date User Action Args
2011-01-04 11:29:46vstinnersetrecipients: + vstinner, db3l, mark.dickinson, skrah
2011-01-04 11:29:46vstinnersetmessageid: <1294140586.16.0.202341201338.issue8719@psf.upfronthosting.co.za>
2011-01-04 11:29:41vstinnerlinkissue8719 messages
2011-01-04 11:29:41vstinnercreate