From 1b0ab17df9ca76609050a9ac1e0baa20d70fd2b7 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 25 Feb 2007 10:37:25 +0000 Subject: [PATCH] Reduce thread load so test completes faster. [SVN r37061] --- test/regress/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regress/main.cpp b/test/regress/main.cpp index bab6e08f..b157caab 100644 --- a/test/regress/main.cpp +++ b/test/regress/main.cpp @@ -73,7 +73,7 @@ int cpp_main(int /*argc*/, char * /*argv*/[]) get_array_data(); // initialises data. std::list > threads; - for(int i = 0; i < 10; ++i) + for(int i = 0; i < 5; ++i) { threads.push_back(boost::shared_ptr(new boost::thread(&run_tests))); }