Browse Source

Tweak - Add property junit.maxmemory to allow local override

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1681376 13f79535-47bb-0310-9956-ffa450edef68
pull/39/head
Andreas L. Delmelle 9 years ago
parent
commit
a987a466fb
1 changed files with 5 additions and 4 deletions
  1. 5
    4
      build.xml

+ 5
- 4
build.xml View File

@@ -160,6 +160,7 @@ list of possible build targets.
<property name="javac.fork" value="no"/>
<property name="junit.fork" value="yes"/>
<property name="junit.haltonfailure" value="off"/>
<property name="junit.maxmemory" value="256m"/>
<property name="junit.printsummary" value="off"/>
<property name="junit.formatter.brief" value="on"/>
<property name="javadoc.packages" value="org.apache.fop.*"/>
@@ -225,7 +226,7 @@ list of possible build targets.
<junit haltonfailure="${junit.haltonfailure}"
fork="${junit.fork}"
printsummary="${junit.printsummary}"
maxmemory="256m"/>
maxmemory="${junit.maxmemory}"/>
</presetdef>
<!-- =================================================================== -->
@@ -815,9 +816,9 @@ list of possible build targets.
<classpath>
<path refid="@{classpath}"/>
</classpath>
<assertions>
<enable/>
</assertions>
<assertions>
<enable/>
</assertions>
<test name="@{testsuite}" todir="${junit.reports.dir}" outfile="@{outfile}"/>
</junit>
</sequential>

Loading…
Cancel
Save