Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F25E210B13 for ; Sun, 7 Apr 2013 10:27:03 +0000 (UTC) Received: (qmail 57489 invoked by uid 500); 7 Apr 2013 10:27:03 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 57436 invoked by uid 500); 7 Apr 2013 10:27:03 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 57427 invoked by uid 99); 7 Apr 2013 10:27:03 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Apr 2013 10:27:03 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 10BED5050A; Sun, 7 Apr 2013 10:27:03 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hugo@apache.org To: commits@cloudstack.apache.org Message-Id: <1d726e7f492f46f79de5018a8ceb9672@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to d9f7bb2 Date: Sun, 7 Apr 2013 10:27:03 +0000 (UTC) Updated Branches: refs/heads/master a85b498af -> d9f7bb285 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. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d9f7bb28 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d9f7bb28 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d9f7bb28 Branch: refs/heads/master Commit: d9f7bb2854c812516caca4985a846e30258a8f7b Parents: a85b498 Author: Hugo Trippaers Authored: Sun Apr 7 12:08:30 2013 +0200 Committer: Hugo Trippaers Committed: Sun Apr 7 12:17:53 2013 +0200 ---------------------------------------------------------------------- .../network/security/SecurityGroupQueueTest.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d9f7bb28/server/test/com/cloud/network/security/SecurityGroupQueueTest.java ---------------------------------------------------------------------- diff --git a/server/test/com/cloud/network/security/SecurityGroupQueueTest.java b/server/test/com/cloud/network/security/SecurityGroupQueueTest.java index b9e4176..e623785 100644 --- a/server/test/com/cloud/network/security/SecurityGroupQueueTest.java +++ b/server/test/com/cloud/network/security/SecurityGroupQueueTest.java @@ -139,7 +139,7 @@ public class SecurityGroupQueueTest extends TestCase { testNumJobsEqToNumVms2(400,5000); testNumJobsEqToNumVms2(1,1); testNumJobsEqToNumVms2(1,1000000); - testNumJobsEqToNumVms2(1000,1); + testNumJobsEqToNumVms2(750,1); }