reduce thread load so test completes faster.

[SVN r37060]
This commit is contained in:
John Maddock
2007-02-25 10:36:06 +00:00
parent a1de8967fa
commit cce38359c9

View File

@ -73,7 +73,7 @@ int cpp_main(int /*argc*/, char * /*argv*/[])
get_array_data(); // initialises data.
std::list<boost::shared_ptr<boost::thread> > threads;
for(int i = 0; i < 10; ++i)
for(int i = 0; i < 5; ++i)
{
threads.push_back(boost::shared_ptr<boost::thread>(new boost::thread(&run_tests)));
}