From 075dcee0429932ae9fd23d72d1cb2c5c2dda3efe Mon Sep 17 00:00:00 2001 From: Konstantin Podsvirov Date: Wed, 10 Jun 2020 23:30:15 +0300 Subject: [PATCH] Twice tolerance waiting time with MinGW Increased tolerance waiting time for MinGW in dequeue-empty-nowait test case, because this test case not passed on slow and powerful computers. --- tests/test_mpmc_q.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mpmc_q.cpp b/tests/test_mpmc_q.cpp index 5b0e41d9..3b8aec36 100644 --- a/tests/test_mpmc_q.cpp +++ b/tests/test_mpmc_q.cpp @@ -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 q(q_size); int popped_item = 0;