Message307829
| Author |
vstinner |
| Recipients |
vstinner, xdegaye |
| Date |
2017年12月07日.23:20:32 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1512688832.79.0.213398074469.issue32246@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
> The fact that the TEMP directory is not clean already happens when running buildbottest natively with the standard Python Makefile (no one has noticed it yet I guess) and the directory contains a core file.
The root issue is likely the core file. I got a similar issue on FreeBSD when an unit test crashed on purpose but forgot to suppress crash report.
You should either find a way to disable the creation of core file when using faulthandler_suppress_crash_report() and/or SuppressCrashReport, or skip the test on Android.
I'm fine with skipped the test on Android, since the test currently uses faulthandler._sigsegv() which is already skipped on Android in test_faulthandler:
def skip_segfault_on_android(test):
# Issue #32138: Raising SIGSEGV on Android may not cause a crash.
return unittest.skipIf(is_android,
'raising SIGSEGV on Android is unreliable')(test) |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2017年12月07日 23:20:32 | vstinner | set | recipients:
+ vstinner, xdegaye |
| 2017年12月07日 23:20:32 | vstinner | set | messageid: <1512688832.79.0.213398074469.issue32246@psf.upfronthosting.co.za> |
| 2017年12月07日 23:20:32 | vstinner | link | issue32246 messages |
| 2017年12月07日 23:20:32 | vstinner | create |
|