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 pitrou, skrah, vstinner
Date 2011-04-30.23:15:43
SpamBayes Score 1.2287655e-06
Marked as misclassified No
Message-id <1304205344.9.0.930642691804.issue11962@psf.upfronthosting.co.za>
In-reply-to
Content
> The FreeBSD-AMD64 bot exhibits sporadic hanging in unspecific places.

You can try a shorter regrtest timeout, edit Lib/test/regrtest.py near:

    if hasattr(faulthandler, 'dump_tracebacks_later'):
        timeout = 60*60

(or use --timeout option of the regrtest.py program)

If you have an access to a terminal (using ssh), you can also set a signal to dump the traceback: edit regrtest.py to add "import signal; faulthandler.register(signal.SIGUSR1, all_threads=True)" after "faulthandler.enable()". Then use "kill -USR1 pid" to dump the traceback.

Or the problem is an unlimited loop while dumping the traceback because of a timeout :-D In this case, disable the timeout using --timeout=0 option of regrtest.py.
History
Date User Action Args
2011-04-30 23:15:44vstinnersetrecipients: + vstinner, pitrou, skrah
2011-04-30 23:15:44vstinnersetmessageid: <1304205344.9.0.930642691804.issue11962@psf.upfronthosting.co.za>
2011-04-30 23:15:44vstinnerlinkissue11962 messages
2011-04-30 23:15:43vstinnercreate