Skip to content

Robust thread termination in test_watch and test_watch_requires_lock_to_run #6788

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
39 changes: 23 additions & 16 deletions distributed/tests/test_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,15 @@ def stop():
stop_called.set()
return time() > start + 0.500

log = watch(interval="10ms", cycle="50ms", stop=stop)
try:
log = watch(interval="10ms", cycle="50ms", stop=stop)

stop_called.wait(2)
sleep(0.5)
assert 1 < len(log) < 10
watch_thread.join(2)
stop_called.wait(2)
sleep(0.5)
assert 1 < len(log) < 10
finally:
stop_called.wait()
watch_thread.join()


def test_watch_requires_lock_to_run():
Expand Down Expand Up @@ -232,21 +235,25 @@ def block_lock():
# Block the lock over the entire duration of watch
blocking_thread = threading.Thread(target=block_lock, name="Block Lock")
blocking_thread.daemon = True
blocking_thread.start()

log = watch(interval="10ms", cycle="50ms", stop=stop_profiling)
try:
blocking_thread.start()

start = time() # wait until thread starts up
while threading.active_count() < start_threads + 2:
assert time() < start + 2
sleep(0.01)
log = watch(interval="10ms", cycle="50ms", stop=stop_profiling)

sleep(0.5)
assert len(log) == 0
release_lock.set()
start = time() # wait until thread starts up
while threading.active_count() < start_threads + 2:
assert time() < start + 2
sleep(0.01)

profiling_thread.join(2)
blocking_thread.join(2)
sleep(0.5)
assert len(log) == 0
release_lock.set()
finally:
release_lock.set()
stop_profiling_called.wait()
blocking_thread.join()
profiling_thread.join()


@dataclasses.dataclass(frozen=True)
Expand Down