Skip to content

Commit

Permalink
Twice tolerance waiting time with MinGW
Browse files Browse the repository at this point in the history
Increased tolerance waiting time for MinGW in dequeue-empty-nowait test
case, because this test case not passed on slow and powerful computers.
  • Loading branch information
podsvirov committed Jun 10, 2020
1 parent f593aad commit 075dcee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_mpmc_q.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ static milliseconds millis_from(const test_clock::time_point &tp0)
TEST_CASE("dequeue-empty-nowait", "[mpmc_blocking_q]")
{
size_t q_size = 100;
milliseconds tolerance_wait(10);
milliseconds tolerance_wait(20);
spdlog::details::mpmc_blocking_queue<int> q(q_size);
int popped_item = 0;

Expand Down

0 comments on commit 075dcee

Please sign in to comment.