diff options
author | Jeremias Maerki <jeremias@apache.org> | 2009-02-04 09:28:48 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2009-02-04 09:28:48 +0000 |
commit | ce5cf615b2e9ccf0ef3762a57e90da7821bf830e (patch) | |
tree | 356ea4261f591ab9473696eeb55c9cbe35a1df6a /build.xml | |
parent | 34856199208b84891a449d0d97fd11e0803f8e8f (diff) | |
download | xmlgraphics-fop-ce5cf615b2e9ccf0ef3762a57e90da7821bf830e.tar.gz xmlgraphics-fop-ce5cf615b2e9ccf0ef3762a57e90da7821bf830e.zip |
Fixed classpath problem concerning XMLUnit.
Split JUnits targets into a reduced set (without layout engine tests) and a full set.
Reactivated "gump" target and assigning it the reduced set. I want to see if Gump can do a bit more of our test suite without failing.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@740665 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -716,7 +716,7 @@ list of possible build targets. <src path="${basedir}/test/java"/> <patternset refid="test-sources"/> <classpath> - <path refid="libs-build-classpath"/> + <path refid="libs-build-tools-classpath"/> <fileset dir="${build.dir}"> <include name="fop.jar"/> </fileset> @@ -935,7 +935,9 @@ list of possible build targets. <test name="org.apache.fop.text.linebreak.LineBreakStatusTest" todir="${junit.reports.dir}"/> </junit> </target> - <target name="junit" depends="junit-userconfig, junit-basic, junit-transcoder, junit-text-linebreak, junit-layout, junit-fotree, junit-intermediate-format" description="Runs all of FOP's JUnit tests" if="junit.present"> + <target name="junit-reduced" depends="junit-userconfig, junit-basic, junit-transcoder, junit-text-linebreak, junit-fotree"/> + <target name="junit-full" depends="junit-reduced, junit-layout, junit-intermediate-format"/> + <target name="junit" depends="junit-full" description="Runs all of FOP's JUnit tests" if="junit.present"> <fail><condition><or><isset property="fop.junit.error"/><isset property="fop.junit.failure"/><not><isset property="hyphenation.present"/></not></or></condition> NOTE: ************************************************************************** @@ -1281,7 +1283,7 @@ NOTE: <!-- =================================================================== --> <!-- Special target for Gump --> <!-- =================================================================== --> - <target name="gump" depends="all, javadocs"/> + <target name="gump" depends="junit-reduced"/> <!-- =================================================================== --> <!-- Clean targets --> <!-- =================================================================== --> |