Reduce thread load so test completes faster.

[SVN r37061]
This commit is contained in:
John Maddock
2007-02-25 10:37:25 +00:00
parent 07016623eb
commit 1b0ab17df9

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)));
}