You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bh...@apache.org on 2012/11/03 14:13:10 UTC

git commit: maven: enable jvm heap size for forked surefire test processes

Updated Branches:
  refs/heads/master 863306260 -> d8fbb0dd1


maven: enable jvm heap size for forked surefire test processes

Any forked process that runs from maven surefire plugin gets it own separate
heap which may cause build issues. Patch fixes the issue by explicity args to
the surefire plugin for cloud-server.

Signed-off-by: Rohit Yadav <bh...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/d8fbb0dd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/d8fbb0dd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/d8fbb0dd

Branch: refs/heads/master
Commit: d8fbb0dd132f176e13c0bab4a715d2f6480ce62b
Parents: 8633062
Author: Rohit Yadav <bh...@apache.org>
Authored: Sat Nov 3 18:39:53 2012 +0530
Committer: Rohit Yadav <bh...@apache.org>
Committed: Sat Nov 3 18:42:51 2012 +0530

----------------------------------------------------------------------
 server/pom.xml |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/d8fbb0dd/server/pom.xml
----------------------------------------------------------------------
diff --git a/server/pom.xml b/server/pom.xml
index 7f80acc..cd4fbbe 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -86,6 +86,7 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
+          <argLine>-Xmx1024m</argLine>
           <excludes>
             <exclude>com/cloud/upgrade/*</exclude>
             <exclude>com/cloud/async/*</exclude>