(self)
| 77 | self.assertEqual(proc.wait(), sig) |
| 78 | |
| 79 | def test_kill_sigterm(self): |
| 80 | # SIGTERM doesn't mean anything special, but make sure it works |
| 81 | self._kill(signal.SIGTERM) |
| 82 | |
| 83 | def test_kill_int(self): |
| 84 | # os.kill on Windows can take an int which gets set as the exit code |