Merge pull request #7144

8f0d79e test: Disable scheduler test manythreads (Wladimir J. van der Laan)
This commit is contained in:
Wladimir J. van der Laan 2015-12-02 10:18:14 +01:00
commit 1b0241fcec
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

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