[jboss-svn-commits] JBL Code SVN: r38031 - labs/jbosstm/branches/JBOSSTS_4_16/txbridge/tests.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed Apr 18 10:11:37 EDT 2012
Author: istudens at redhat.com
Date: 2012-04-18 10:11:37 -0400 (Wed, 18 Apr 2012)
New Revision: 38031
Modified:
labs/jbosstm/branches/JBOSSTS_4_16/txbridge/tests/pom.xml
Log:
adding memory setting to avoid PermGen space OOM, JBTM-1123
Modified: labs/jbosstm/branches/JBOSSTS_4_16/txbridge/tests/pom.xml
===================================================================
--- labs/jbosstm/branches/JBOSSTS_4_16/txbridge/tests/pom.xml 2012-04-18 06:29:25 UTC (rev 38030)
+++ labs/jbosstm/branches/JBOSSTS_4_16/txbridge/tests/pom.xml 2012-04-18 14:11:37 UTC (rev 38031)
@@ -18,6 +18,9 @@
<version.apache.httpcomponents>4.1.2</version.apache.httpcomponents>
<byteman.home>${project.build.directory}/byteman</byteman.home>
+ <general.server.jvm.args>
+ -Xms64m -Xmx512m -XX:MaxPermSize=256m
+ </general.server.jvm.args>
<byteman.server.jvm.args>
-Dorg.jboss.byteman.debug=true -Dorg.jboss.byteman.verbose=true -Dorg.jboss.byteman.contrib.dtest.rmiregistry.port=1199
-Djboss.modules.system.pkgs=org.jboss.byteman
@@ -185,7 +188,7 @@
<!-- System properties passed to test cases -->
<systemPropertyVariables>
<!-- Used in arquillian.xml - arguments for all JBoss AS instances. -->
- <server.jvm.args>${byteman.server.jvm.args}</server.jvm.args>
+ <server.jvm.args>${general.server.jvm.args} ${byteman.server.jvm.args} ${jpda.server.jvm.args}</server.jvm.args>
<java.rmi.server.codebase>file://target/test-classes/</java.rmi.server.codebase>
</systemPropertyVariables>
More information about the jboss-svn-commits
mailing list