diff options
Diffstat (limited to 'cpp/test/IceUtil/thread/StartTest.cpp')
-rw-r--r-- | cpp/test/IceUtil/thread/StartTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/thread/StartTest.cpp b/cpp/test/IceUtil/thread/StartTest.cpp index 6f4f8d86941..355f2ee4dca 100644 --- a/cpp/test/IceUtil/thread/StartTest.cpp +++ b/cpp/test/IceUtil/thread/StartTest.cpp @@ -60,9 +60,9 @@ StartTest::run() // // Now let's create a bunch of short-lived threads // - for(int i = 0; i < 50; i++) + for(int i = 0; i < 40; i++) { - for(int j = 0; j < 50; j++) + for(int j = 0; j < 40; j++) { Thread* t = new StartTestThread; t->start().detach(); |