Skip to content

Commit

Permalink
fix(test/once-flag): loosen requirement for tight timing (#5733)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz authored Nov 24, 2024
1 parent fd299f1 commit 9b7007b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
- Dev: Unified parsing of historic and live IRC messages. (#5678)
- Dev: 7TV's `entitlement.reset` is now explicitly ignored. (#5685)
- Dev: Qt 6.8 and later now default to the GDI fontengine. (#5710)
- Dev: Moved to condition variables when shutting down worker threads. (#5721)
- Dev: Moved to condition variables when shutting down worker threads. (#5721, #5733)

## 2.5.1

Expand Down
2 changes: 1 addition & 1 deletion tests/src/OnceFlag.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ TEST(OnceFlag, waitFor)
ASSERT_TRUE(stoppedFlag.waitFor(std::chrono::milliseconds{200}));
auto stop = std::chrono::system_clock::now();

ASSERT_LT(stop - start, std::chrono::milliseconds{150});
ASSERT_LT(stop - start, std::chrono::milliseconds{200});

start = std::chrono::system_clock::now();
ASSERT_TRUE(stoppedFlag.waitFor(std::chrono::milliseconds{1000}));
Expand Down

0 comments on commit 9b7007b

Please sign in to comment.