Changing the number of threads in the test from 1000 to 750. 1000 will more often than not result in build failures due to constraints on the build systems.

Most recent centos based systems have process limit of 1024. Running this test will result in an OutOfMemory exception with description unable to create native thread.
This commit is contained in:
Hugo Trippaers 2013-04-07 12:08:30 +02:00
parent a85b498afd
commit d9f7bb2854

View File

@ -139,7 +139,7 @@ public class SecurityGroupQueueTest extends TestCase {
testNumJobsEqToNumVms2(400,5000);
testNumJobsEqToNumVms2(1,1);
testNumJobsEqToNumVms2(1,1000000);
testNumJobsEqToNumVms2(1000,1);
testNumJobsEqToNumVms2(750,1);
}