You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2011/12/13 20:59:42 UTC

svn commit: r1213900 - in /incubator/lcf/trunk: CHANGES.txt build.xml

Author: kwright
Date: Tue Dec 13 19:59:42 2011
New Revision: 1213900

URL: http://svn.apache.org/viewvc?rev=1213900&view=rev
Log:
Set the JVM parameters correctly for the alfresco test

Modified:
    incubator/lcf/trunk/CHANGES.txt
    incubator/lcf/trunk/build.xml

Modified: incubator/lcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/CHANGES.txt?rev=1213900&r1=1213899&r2=1213900&view=diff
==============================================================================
--- incubator/lcf/trunk/CHANGES.txt (original)
+++ incubator/lcf/trunk/CHANGES.txt Tue Dec 13 19:59:42 2011
@@ -3,6 +3,10 @@ $Id$
 
 ======================= 0.4-dev =====================
 
+CONNECTORS-308: Get the alfresco connector integration tests to run
+under ant.
+(Piergiorgio Lucidi, Karl Wright)
+
 CONNECTORS-310: Get the alfresco connector to build with Maven on a clean
 system.  This involves pushing some of the dependencies that are not available
 via the current maven repository into the local repository.  I wound up just

Modified: incubator/lcf/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/build.xml?rev=1213900&r1=1213899&r2=1213900&view=diff
==============================================================================
--- incubator/lcf/trunk/build.xml (original)
+++ incubator/lcf/trunk/build.xml Tue Dec 13 19:59:42 2011
@@ -2687,7 +2687,12 @@
     
     <target name="run-alfresco-tests-derby" depends="compile-alfresco-tests,calculate-alfresco-tests-condition" if="alfresco-tests.include">
         <mkdir dir="test-output/alfresco"/>
-        <junit fork="true" maxmemory="512m" dir="test-output/alfresco" outputtoformatters="true" showoutput="true" haltonfailure="true">
+        <junit fork="true" dir="test-output/alfresco" outputtoformatters="true" showoutput="true" haltonfailure="true">
+            <jvmarg value="-Xms512m"/>
+            <jvmarg value="-Xmx1024m"/>
+            <jvmarg value="-Xss1024k"/>
+            <jvmarg value="-XX:MaxPermSize=256m"/>
+            <jvmarg value="-XX:NewSize=256m"/>
             <classpath>
                 <fileset dir="framework/lib">
                     <include name="*.jar"/>