(self)
| 266 | @support.skip_if_sanitizer("TSAN itercepts SIGILL", thread=True) |
| 267 | @skip_segfault_on_android |
| 268 | def test_sigill(self): |
| 269 | self.check_fatal_error(""" |
| 270 | import faulthandler |
| 271 | import signal |
| 272 | |
| 273 | faulthandler.enable() |
| 274 | signal.raise_signal(signal.SIGILL) |
| 275 | """, |
| 276 | 5, |
| 277 | 'Illegal instruction') |
| 278 | |
| 279 | @unittest.skipIf(_testcapi is None, 'need _testcapi') |
| 280 | def check_fatal_error_func(self, release_gil): |
nothing calls this directly
no test coverage detected