diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2012-03-30 19:09:29 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2012-03-30 19:09:29 +0000 |
commit | 7c8f02c57302d672fe4d0a8fc5332af6d9f0e610 (patch) | |
tree | 9be4d0493b7aa44854254ae99dc842de739d9bea /build.xml | |
parent | 7a51f3fdb1f7ae1f526ea75f804e8f016d653cb8 (diff) | |
download | xmlgraphics-fop-7c8f02c57302d672fe4d0a8fc5332af6d9f0e610.tar.gz xmlgraphics-fop-7c8f02c57302d672fe4d0a8fc5332af6d9f0e610.zip |
Bugzilla #50483: Improved support for TrueType fonts in PostScript
Refactored code and added unit tests
Patch by Mehdi Houshmand
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript@1307574 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -90,7 +90,10 @@ list of possible build targets. <include name="lib/build/jaxen*"/> <include name="lib/build/pmd*"/> <include name="lib/build/qdox*"/> - <include name="lib/build/xmlunit*"/> + <include name="lib/build/xmlunit*"/> + <include name="lib/build/mockito*"/> + <include name="lib/build/hamcrest*"/> + <include name="lib/build/objenesis*"/> </patternset> <fileset dir="${basedir}" id="dist.src"> <include name="src/**"/> @@ -944,7 +947,15 @@ list of possible build targets. <test name="org.apache.fop.text.linebreak.LineBreakStatusTest" todir="${junit.reports.dir}"/> </junit> </target> - <target name="junit-reduced" depends="junit-userconfig, junit-basic, junit-transcoder, junit-text-linebreak, junit-fotree"/> + <target name="junit-fonts" depends="junit-compile"> + <echo message="Running tests for the fonts package"/> + <junit-run title="fonts" testsuite="org.apache.fop.fonts.FOPFontsTestSuite" outfile="TEST-fonts"/> + </target> + <target name="junit-render-ps" depends="junit-compile"> + <echo message="Running tests for the render ps package"/> + <junit-run title="render-ps" testsuite="org.apache.fop.render.ps.RenderPSTestSuite" outfile="TEST-render-ps"/> + </target> + <target name="junit-reduced" depends="junit-userconfig, junit-basic, junit-transcoder, junit-text-linebreak, junit-fotree, junit-fonts, junit-render-ps"/> <target name="junit-full" depends="junit-reduced, junit-layout, junit-area-tree-xml-format, 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> |