Reenable multithread scheduler test

Github-Pull: #8016
Rebased-From: db18ab28c7 166e4b0dfa
This commit is contained in:
Pavel Janík
2016-05-06 11:00:01 +02:00
committed by MarcoFalke
parent 658307e835
commit 2d2b04543d
2 changed files with 1 additions and 2 deletions

View File

@@ -79,6 +79,7 @@ void CScheduler::serviceQueue()
} }
} }
--nThreadsServicingQueue; --nThreadsServicingQueue;
newTaskScheduled.notify_one();
} }
void CScheduler::stop(bool drain) void CScheduler::stop(bool drain)

View File

@@ -40,7 +40,6 @@ static void MicroSleep(uint64_t n)
#endif #endif
} }
#if 0 /* Disabled for now because there is a race condition issue in this test - see #6540 */
BOOST_AUTO_TEST_CASE(manythreads) BOOST_AUTO_TEST_CASE(manythreads)
{ {
seed_insecure_rand(false); seed_insecure_rand(false);
@@ -116,6 +115,5 @@ BOOST_AUTO_TEST_CASE(manythreads)
} }
BOOST_CHECK_EQUAL(counterSum, 200); BOOST_CHECK_EQUAL(counterSum, 200);
} }
#endif
BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE_END()