(self)
| 2618 | self.assertNotEqual(p.wait(), 0) |
| 2619 | |
| 2620 | def test_kill(self): |
| 2621 | p = self._kill_process('kill') |
| 2622 | _, stderr = p.communicate() |
| 2623 | self.assertEqual(stderr, b'') |
| 2624 | self.assertEqual(p.wait(), -signal.SIGKILL) |
| 2625 | |
| 2626 | def test_terminate(self): |
| 2627 | p = self._kill_process('terminate') |
nothing calls this directly
no test coverage detected