Skip to content
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

Prevent test timeout on a single CPU #108

Merged
merged 1 commit into from
Oct 2, 2023
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
4 changes: 3 additions & 1 deletion zict/tests/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ def check_different_keys_threadsafe(

def worker(idx, key, value):
barrier.wait()
while any(c < 10 for c in counters):
# When running on a single CPU (`taskset -c 0 pytest`), multitasking can
# misbehave and almost completely starve one of the two threads
while any(c < 10 for c in counters) and all(c < 1000 for c in counters):
z[key] = value
try:
assert z[key] == value
Expand Down
Loading