Test wait(timeout)
(self)
| 2447 | |
| 2448 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 2449 | def test_timeout(self): |
| 2450 | """ |
| 2451 | Test wait(timeout) |
| 2452 | """ |
| 2453 | results = self.DummyList() |
| 2454 | self.run_threads(self._test_timeout_f, (self.barrier, results)) |
| 2455 | self.assertEqual(len(results), self.barrier.parties) |
| 2456 | |
| 2457 | @classmethod |
| 2458 | def _test_default_timeout_f(cls, barrier, results): |
nothing calls this directly
no test coverage detected