Test that a barrier works for 10 consecutive runs
(self)
| 2095 | self.run_threads(self.multipass, (self.barrier, results, passes)) |
| 2096 | |
| 2097 | def test_barrier_10(self): |
| 2098 | """ |
| 2099 | Test that a barrier works for 10 consecutive runs |
| 2100 | """ |
| 2101 | return self.test_barrier(10) |
| 2102 | |
| 2103 | @classmethod |
| 2104 | def _test_wait_return_f(cls, barrier, queue): |
nothing calls this directly
no test coverage detected