STINNER Victor <vstin...@python.org> added the comment:

> "crashing" as in the test result but not segfaulting
> 0:00:01 load avg: 1.70 [1/1/1] test_builtin crashed (Exit code -1)

What is the signal 1 on Solaris? On Linux, it's SIGHUP, not SIGSEGV:

$ python3
Python 3.7.6 (default, Jan 30 2020, 09:44:41) 
>>> import signal
>>> signal.SIGSEGV
<Signals.SIGSEGV: 11>
>>> signal.SIGHUP
<Signals.SIGHUP: 1>

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue40140>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to