Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions Lib/test/_test_multiprocessing.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -1577,14 +1577,13 @@ def f(cls, cond, sleeping, woken, timeout=None):
cond.release()

def assertReachesEventually(self, func, value):
for i in range(10):
for _ in support.sleeping_retry(support.SHORT_TIMEOUT):
try:
if func() == value:
break
except NotImplementedError:
break
time.sleep(DELTA)
time.sleep(DELTA)

self.assertReturnsIfImplemented(value, func)

def check_invariant(self, cond):
Expand DownExpand Up@@ -1618,26 +1617,23 @@ def test_notify(self):
sleeping.acquire()

# check no process/thread has woken up
time.sleep(DELTA)
self.assertReturnsIfImplemented(0, get_value, woken)
self.assertReachesEventually(lambda: get_value(woken), 0)

# wake up one process/thread
cond.acquire()
cond.notify()
cond.release()

# check one process/thread has woken up
time.sleep(DELTA)
self.assertReturnsIfImplemented(1, get_value, woken)
self.assertReachesEventually(lambda: get_value(woken), 1)

# wake up another
cond.acquire()
cond.notify()
cond.release()

# check other has woken up
time.sleep(DELTA)
self.assertReturnsIfImplemented(2, get_value, woken)
self.assertReachesEventually(lambda: get_value(woken), 2)

# check state is not mucked up
self.check_invariant(cond)
Expand Down