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 vstinner, xdegaye
Date 2017-12-11.12:05:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1512993940.67.0.213398074469.issue32252@psf.upfronthosting.co.za>
In-reply-to
Content
I'm unable to reproduce the issue on Fedora 27:

vstinner@apu$ cat /proc/sys/kernel/core_pattern 
core-%e.%s
vstinner@apu$ ulimit -c
unlimited
vstinner@apu$ ./python -m test test_regrtest
Run tests sequentially
0:00:00 load avg: 0.70 [1/1] test_regrtest
1 test OK.

Total duration: 14 sec
Tests result: SUCCESS


While core dump works as expected:

vstinner@apu$ ./python
>>> import faulthandler
>>> faulthandler._sigsegv()
Segmentation fault (core dumped)
vstinner@apu$ ls core*
core-python.11.32456
History
Date User Action Args
2017-12-11 12:05:40vstinnersetrecipients: + vstinner, xdegaye
2017-12-11 12:05:40vstinnersetmessageid: <1512993940.67.0.213398074469.issue32252@psf.upfronthosting.co.za>
2017-12-11 12:05:40vstinnerlinkissue32252 messages
2017-12-11 12:05:40vstinnercreate