diff --git a/test/basetest/utils.py b/test/basetest/utils.py index 6f93640d5..8458268f8 100644 --- a/test/basetest/utils.py +++ b/test/basetest/utils.py @@ -60,7 +60,9 @@ def wait_condition(cond, timeout=1): if timeout is None: timeout = 1 - sleeptime = .1 + # NOTE Increasing sleeptime can dramatically increase testsuite runtime + # It also reduces CPU load significantly + sleeptime = .01 if timeout < sleeptime: print("Warning, timeout cannot be smaller than", sleeptime)