summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-06-05 11:28:41 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-06-05 11:28:41 -0400
commit045342ba29aae186e13c711bd4dd84377d4a7e43 (patch)
tree999c9f9fbe7f7e0e5a615b0e7ab8be541f22126e /indra/llcommon
parent6503c0b2b8bcde78d990391f07d3527123f11fb3 (diff)
SL-18837: Bump the granularity of WorkQueue timing tests.
On a low-powered GitHub Mac runner, the system doesn't wake up as soon as it should, and we get spurious "too late" errors. Try a bigger time increment.
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/tests/workqueue_test.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/llcommon/tests/workqueue_test.cpp b/indra/llcommon/tests/workqueue_test.cpp
index 1d73f7aa0d..7655a7aa1f 100644
--- a/indra/llcommon/tests/workqueue_test.cpp
+++ b/indra/llcommon/tests/workqueue_test.cpp
@@ -83,7 +83,11 @@ namespace tut
// signal the work item that it can quit; consider LLOneShotCond.
LLCond<Shared> data;
auto start = WorkQueue::TimePoint::clock::now();
- auto interval = 100ms;
+ // 2s seems like a long time to wait, since it directly impacts the
+ // duration of this test program. Unfortunately GitHub's Mac runners
+ // are pretty wimpy, and we're getting spurious "too late" errors just
+ // because the thread doesn't wake up as soon as we want.
+ auto interval = 2s;
queue.postEvery(
interval,
[&data, count = 0]