mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-5664 Merge workaround for OutOfMemoryError caused by Java heap fragment reproduced on AIX system from trunk to 3.6 maintenance stream
X-SVN-Rev: 21352
This commit is contained in:
parent
8b2a2f7398
commit
4f65bd1a86
1 changed files with 16 additions and 3 deletions
19
build.xml
19
build.xml
|
@ -655,7 +655,10 @@
|
|||
</target>
|
||||
<target name="check" depends="tests, jar, deleteCore" description="run standard icu4j test suite">
|
||||
<java classname="com.ibm.icu.dev.test.TestAll" fork="yes" failonerror="true">
|
||||
<jvmarg value="-ea"/> <!-- enable assertion checks -->
|
||||
<!-- enable assertion checks -->
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-Xms96m"/>
|
||||
<jvmarg value="-Xmx128m"/>
|
||||
<arg value="-n"/>
|
||||
<classpath>
|
||||
<pathelement path="${java.class.path}/"/>
|
||||
|
@ -680,7 +683,9 @@
|
|||
|
||||
<target name="exhaustiveCheck" depends="tests, jar, deleteCore" description="run standard icu4j test suite in exhaustive mode">
|
||||
<java classname="com.ibm.icu.dev.test.TestAll" fork="yes" failonerror="true">
|
||||
<jvmarg value="-ea"/> <!-- enable assertion checks -->
|
||||
<!-- enable assertion checks -->
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-Xms96m"/>
|
||||
<jvmarg value="-Xmx128m"/> <!-- set the max heap size to 128m -->
|
||||
<arg value="-n"/>
|
||||
<arg value="-e10"/>
|
||||
|
@ -1355,7 +1360,10 @@
|
|||
<target name="defaultPackageCheck" depends="tests, defaultPackage" description="Run Tests for loading resources in the default package">
|
||||
<!--run the tests -->
|
||||
<java classname="TestDefaultPackageLoading" fork="yes" failonerror="true">
|
||||
<jvmarg value="-ea"/> <!-- enable assertion checks -->
|
||||
<!-- enable assertion checks -->
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-Xms96m"/>
|
||||
<jvmarg value="-Xmx128m"/>
|
||||
<arg value="-n"/>
|
||||
<classpath>
|
||||
<pathelement path="${java.class.path}/"/>
|
||||
|
@ -1901,6 +1909,9 @@
|
|||
|
||||
<target name="runCheck" depends="init,tests">
|
||||
<java classname="com.ibm.icu.dev.test.TestAll" fork="yes" failonerror="true">
|
||||
<jvmarg value="-ea"/>
|
||||
<jvmarg value="-Xms96m"/>
|
||||
<jvmarg value="-Xmx128m"/>
|
||||
<arg value="-n"/>
|
||||
<classpath>
|
||||
<pathelement path="${java.class.path}/"/>
|
||||
|
@ -1914,6 +1925,8 @@
|
|||
|
||||
<target name="eclipseRunCheck" depends="init,eclipseTests">
|
||||
<java classname="com.ibm.icu.dev.test.TestAll" fork="yes" failonerror="true">
|
||||
<jvmarg value="-Xms96m"/>
|
||||
<jvmarg value="-Xmx128m"/>
|
||||
<arg value="-n"/>
|
||||
<classpath>
|
||||
<pathelement path="${java.class.path}/"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue