jeremias 2005/01/12 23:04:00
Modified: . build.xml
Log:
Removed Simon's line again and added an explanation why that line shouldn't
be there.
Added java.awt.headless="true" to the forked JUnit tests to satisfy Gump.
Revision Changes Path
1.114 +10 -1 xml-fop/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-fop/build.xml,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- build.xml 12 Jan 2005 19:50:36 -0000 1.113
+++ build.xml 13 Jan 2005 07:04:00 -0000 1.114
@@ -675,6 +675,7 @@
<mkdir dir="${build.dir}/test-reports/fop-transcoder"/>
<junit haltonerror="yes" fork="${junit.fork}">
<sysproperty key="basedir" value="${basedir}"/>
+ <sysproperty key="jawa.awt.headless" value="true"/>
<formatter type="brief" usefile="false"/>
<classpath>
<pathelement location="${build.dir}/test-classes"/>
@@ -690,13 +691,19 @@
</batchtest>
</junit>
<echo message="Running basic functionality tests for
fop-transcoder-allinone.jar"/>
+ <!-- These are the same tests as in the block above but testing the
"allinone" JAR
+ instead. Please don't add any additional paths other than the test
classes, the
+ allinone JAR and the any Batik JARs to the classpath. If this
fails, but the
+ previous test block succeeded it indicates that the packaging of
the allinone
+ JAR needs to be updated.
+ -->
<mkdir dir="${build.dir}/test-reports/fop-transcoder-allinone"/>
<junit haltonerror="yes" fork="${junit.fork}">
<sysproperty key="basedir" value="${basedir}"/>
+ <sysproperty key="jawa.awt.headless" value="true"/>
<formatter type="brief" usefile="false"/>
<classpath>
<pathelement location="${build.dir}/test-classes"/>
- <path refid="libs-basic-run-classpath"/>
<fileset dir="build">
<include name="fop-transcoder-allinone.jar"/>
</fileset>
@@ -714,6 +721,7 @@
<mkdir dir="${build.dir}/test-reports/fop"/>
<junit haltonerror="yes" fork="${junit.fork}">
<sysproperty key="basedir" value="${basedir}"/>
+ <sysproperty key="jawa.awt.headless" value="true"/>
<formatter type="brief" usefile="false"/>
<classpath>
<pathelement location="${build.dir}/test-classes"/>
@@ -733,6 +741,7 @@
<mkdir dir="${build.dir}/test-reports/fop"/>
<junit haltonerror="yes" fork="${junit.fork}">
<sysproperty key="basedir" value="${basedir}"/>
+ <sysproperty key="jawa.awt.headless" value="true"/>
<sysproperty key="fop.layoutengine.disabled"
value="${layoutengine.disabled}"/>
<formatter type="brief" usefile="false"/>
<classpath>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]