[jboss-cvs] JBossAS SVN: r79978 - in trunk/testsuite: imports and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 23 10:17:20 EDT 2008


Author: dimitris at jboss.org
Date: 2008-10-23 10:17:19 -0400 (Thu, 23 Oct 2008)
New Revision: 79978

Modified:
   trunk/testsuite/build.xml
   trunk/testsuite/imports/server-config.xml
Log:
JBAS-6125 - Seam deployment tests need more memory on the client side.

Modified: trunk/testsuite/build.xml
===================================================================
--- trunk/testsuite/build.xml	2008-10-23 14:12:43 UTC (rev 79977)
+++ trunk/testsuite/build.xml	2008-10-23 14:17:19 UTC (rev 79978)
@@ -933,7 +933,7 @@
       <antcall target="jboss-minimal-tests" />
       <antcall target="jboss-all-config-tests"/>
       <antcall target="tests-profileservice"/>
-   	<antcall target="tests-bootstrap-dependencies"/>
+      <antcall target="tests-bootstrap-dependencies"/>
       <antcall target="tests-springdeployer"/>
       <antcall target="tests-security-manager"/>
       <antcall target="tests-clustering-all-stacks"/>
@@ -1024,7 +1024,10 @@
    <target name="tests-profileservice" description="Tests with the full featured profile service">
       <create-profileservice-config baseconf="default" conf="profileservice"/>
       <server:start name="profileservice"/>
-      <run-junit junit.patternset="profileservice.includes" junit.configuration="profileservice"/>
+      <run-junit
+         junit.patternset="profileservice.includes"
+         junit.configuration="profileservice"
+      />
       <server:stop name="profileservice"/>
    </target>
    <target name="profileservice-config" description="Create the full featured profile service config">
@@ -1313,9 +1316,7 @@
          jvm="${junit.jvm}">
 
          <jvmarg line="${junit.jvm.options}"/>
-         <!-- Seam deployment tests need more memory -->
-         <jvmarg value="-Xms128m" />
-         <jvmarg value="-Xmx256m"/>
+
          <!-- Used for JGroups -->
          <jvmarg value="-Dbind.address=${node0}"/>
          <sysproperty key="jboss.dist" value="${jboss.dist}"/>
@@ -1387,9 +1388,7 @@
          jvm="${junit.jvm}">
 
          <jvmarg line="${junit.jvm.options}"/>
-         <!-- Seam deployment tests need more memory -->
-         <jvmarg value="-Xms128m" />
-         <jvmarg value="-Xmx256m"/>
+
          <!-- Used for JGroups -->
          <jvmarg value="-Dbind.address=${node0}"/>
          <sysproperty key="jboss.dist" value="${jboss.dist}"/>

Modified: trunk/testsuite/imports/server-config.xml
===================================================================
--- trunk/testsuite/imports/server-config.xml	2008-10-23 14:12:43 UTC (rev 79977)
+++ trunk/testsuite/imports/server-config.xml	2008-10-23 14:17:19 UTC (rev 79978)
@@ -1114,6 +1114,11 @@
             jvm="${junit.jvm}">
 
             <jvmarg line="${junit.jvm.options}"/>
+            
+            <!-- JBAS-6125 - Seam deployment tests need more memory -->
+            <!-- How can we pass this paramater from tests-profileservice only? -->
+            <jvmarg value="-Xmx256m"/>
+            
             <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
             <sysproperty key="build.testlog" value="${build.testlog}"/>
             <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>




More information about the jboss-cvs-commits mailing list