(self)
| 665 | |
| 666 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 667 | def test_kill(self): |
| 668 | exitcode = self._kill_process(multiprocessing.Process.kill) |
| 669 | if os.name != 'nt': |
| 670 | self.assertEqual(exitcode, -signal.SIGKILL) |
| 671 | else: |
| 672 | self.assertEqual(exitcode, -signal.SIGTERM) |
| 673 | |
| 674 | def test_cpu_count(self): |
| 675 | try: |
nothing calls this directly
no test coverage detected