mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
gh-121474: Add threading.Barrier parties arg sanity check. (GH-121480)
This commit is contained in:
parent
3a9b2aae61
commit
d27a53fc02
3 changed files with 8 additions and 0 deletions
|
@ -1013,6 +1013,10 @@ class BarrierTests(BaseTestCase):
|
|||
self.assertEqual(self.barrier.n_waiting, 0)
|
||||
self.assertFalse(self.barrier.broken)
|
||||
|
||||
def test_constructor(self):
|
||||
self.assertRaises(ValueError, self.barriertype, parties=0)
|
||||
self.assertRaises(ValueError, self.barriertype, parties=-1)
|
||||
|
||||
def test_barrier(self, passes=1):
|
||||
"""
|
||||
Test that a barrier is passed in lockstep
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue