(self)
| 250 | |
| 251 | @support.skip_if_sanitizer("TSAN itercepts SIGABRT", thread=True) |
| 252 | def test_sigabrt(self): |
| 253 | self.check_fatal_error(""" |
| 254 | import faulthandler |
| 255 | faulthandler.enable() |
| 256 | faulthandler._sigabrt() |
| 257 | """, |
| 258 | 3, |
| 259 | 'Aborted') |
| 260 | |
| 261 | @unittest.skipIf(sys.platform == 'win32', |
| 262 | "SIGFPE cannot be caught on Windows") |
nothing calls this directly
no test coverage detected