- Remove MaxPermSize from sysproperty lists in library.xml as it was

causing the JVM to not start.
This commit is contained in:
Andrew Overholt 2008-12-05 19:04:18 +00:00
parent d28f580d2c
commit 272a7ecd16
2 changed files with 8 additions and 4 deletions

View File

@ -6,7 +6,7 @@ RCS file: /cvsroot/eclipse/org.eclipse.test/library.xml,v
retrieving revision 1.33
diff -u -r1.33 library.xml
--- library.xml 13 Mar 2008 14:00:36 -0000 1.33
+++ library.xml 5 Dec 2008 01:39:01 -0000
+++ library.xml 5 Dec 2008 14:11:35 -0000
@@ -6,13 +6,13 @@
</target>
@ -102,14 +102,14 @@ diff -u -r1.33 library.xml
<arg line="-consolelog"/>
+ <arg line="-clean"/>
+ <arg line="-Dswt.library.path=/usr/lib/eclipse"/>
+ <arg line="-Dsetup.override.vmArgs=Xms256m;Xmx1024m;XX:MaxPermSize=512m"/>
+ <arg line="-Dsetup.override.vmArgs=Xms256m;Xmx1024m"/>
+ <arg line="-Dsetup.override.systemProperties=PLUGIN_PATH=${plugin-path};user.home=${testhome}"/>
<jvmarg line="${vmargs} ${extraVMargs}"/>
- <sysproperty key="PLUGIN_PATH" value="${plugin-path}"/>
+ <sysproperty key="PLUGIN_PATH" value="${plugin-path}"/>
+ <sysproperty key="user.home" value="${testhome}"/>
+ <sysproperty key="swt.library.path" value="/usr/lib/eclipse"/>
+ <sysproperty key="setup.override.vmArgs" value="Xms256m;Xmx1024m;XX:MaxPermSize=512m"/>
+ <sysproperty key="setup.override.vmArgs" value="Xms256m;Xmx1024m"/>
+ <sysproperty key="setup.override.systemProperties" value="PLUGIN_PATH=${plugin-path};user.home=${testhome}"/>
+ <sysproperty key="sdk.tests.data.dir" value="${data-dir}"/>
+ <sysproperty key="osgi.configuration.area" value="${data-dir}"/>

View File

@ -30,7 +30,7 @@ Epoch: 1
Summary: An open, extensible IDE
Name: eclipse
Version: %{eclipse_majmin}.%{eclipse_micro}
Release: 9%{?dist}
Release: 10%{?dist}
License: EPL
Group: Text Editors/Integrated Development Environments (IDE)
URL: http://www.eclipse.org/
@ -1537,6 +1537,10 @@ fi
#%{_libdir}/%{name}/configuration/org.eclipse.equinox.source
%changelog
* Fri Dec 5 2008 Andrew Overholt <overholt@redhat.com> 1:3.4.1-10
- Remove MaxPermSize from sysproperty lists in library.xml as it was causing the
JVM to not start.
* Thu Dec 4 2008 Andrew Overholt <overholt@redhat.com> 1:3.4.1-8
- Increase MaxPermSize when running tests.