Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2012-09-26 15:53:23 +0000
committerDavid Williams2012-09-26 15:53:23 +0000
commit2d5e9badd8aacd7c7a14e9dca74401d1d0d25c2e (patch)
treea4528d190c833551845a9378fae4050b46876b92
parent871a7c6842fd7254c44cd6084155834853de5e8f (diff)
downloadeclipse.platform.releng-2d5e9badd8aacd7c7a14e9dca74401d1d0d25c2e.tar.gz
eclipse.platform.releng-2d5e9badd8aacd7c7a14e9dca74401d1d0d25c2e.tar.xz
eclipse.platform.releng-2d5e9badd8aacd7c7a14e9dca74401d1d0d25c2e.zip
Bug 390243 - adjust ms, mx, and maxpermsize for unit and performancev20120926-155323I20121002-0800
tests?
-rw-r--r--bundles/org.eclipse.test/library.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.test/library.xml b/bundles/org.eclipse.test/library.xml
index 79af5566..206a1d99 100644
--- a/bundles/org.eclipse.test/library.xml
+++ b/bundles/org.eclipse.test/library.xml
@@ -43,7 +43,7 @@
<property name="formatter" value="org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter" />
<!--default heap sizes when running performance tests-->
- <condition property="vmargs" value=" -Xms256M -Xmx512M -XX:MaxPermSize=500m ${envantopts}" >
+ <condition property="vmargs" value=" -Xms512M -Xmx1024M -XX:MaxPermSize=256m ${envantopts}" >
<equals arg1="${test.target}" arg2="performance" />
</condition>
<tstamp prefix="NOW" />
@@ -74,10 +74,10 @@
<target name="java-test">
<echo message="DEBUG: Running tests using java-test" />
<!--default vm args-->
- <condition property="vmargs" value=" -Xms40m -Xmx384m -XX:MaxPermSize=256m ${envantopts}">
+ <condition property="vmargs" value=" -Xms40m -Xmx512m -XX:MaxPermSize=256m ${envantopts}">
<os family="windows" />
</condition>
- <property name="vmargs" value=" -Xms40m -Xmx384m -XX:MaxPermSize=256m ${envantopts}" />
+ <property name="vmargs" value=" -Xms40m -Xmx512m -XX:MaxPermSize=256m ${envantopts}" />
<!--set default jvm to use for testing-->
<property name="jvm" value="${java.home}/bin/java" />

Back to the top