(self)
| 2624 | self.assertEqual(p.wait(), -signal.SIGKILL) |
| 2625 | |
| 2626 | def test_terminate(self): |
| 2627 | p = self._kill_process('terminate') |
| 2628 | _, stderr = p.communicate() |
| 2629 | self.assertEqual(stderr, b'') |
| 2630 | self.assertEqual(p.wait(), -signal.SIGTERM) |
| 2631 | |
| 2632 | def test_send_signal_dead(self): |
| 2633 | # Sending a signal to a dead process |
nothing calls this directly
no test coverage detected