56d5ac7210
noticed that formatting is mostly OK but sometimes gets bungled slightly. I tried everything I could think of, and now I'm passing the buck to Java's RTF support. TMW_RTF_TO_THDL_WYLIE (now misnamed) support TMW->TM conversion (but not TM->TMW). There is an automated test case for a TMW->TM conversion. I have full confidence in this conversion. Even the smallest glitch in the core functionality (not formatting) would surprise me.
66 lines
2.8 KiB
XML
66 lines
2.8 KiB
XML
<!-- @author David Chandler, dchandler@users.sourceforge.net
|
|
|
|
We have a document,
|
|
http://thdltools.sourceforge.net/BuildSystems.html, that you
|
|
probably should read.
|
|
-->
|
|
|
|
<project name="THDLTools-junit" default="fail-nicely" basedir=".">
|
|
|
|
<description>
|
|
This Jakarta Ant buildfile is used to do the low-level work of
|
|
unit testing our system. This is separate from build.xml because
|
|
to use this build file, you must have installed JUnit and the
|
|
JUnit Ant tasks (i.e., $ANT_HOME/lib/junit.jar and
|
|
$ANT_HOME/lib/optional.jar). Thus, this buildfile contains only
|
|
targets that must interact with JUnit.
|
|
|
|
Read the comments of this buildfile to learn more, or see
|
|
'http://thdltools.sourceforge.net/BuildSystems.html'.
|
|
</description>
|
|
|
|
<taskdef name="junit"
|
|
classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask"/>
|
|
|
|
<taskdef name="junitreport"
|
|
classname="org.apache.tools.ant.taskdefs.optional.junit.XMLResultAggregator"/>
|
|
|
|
<target name="fail-nicely"
|
|
description="Tells the user to use build.xml, not this subbuildfile.">
|
|
<fail message="Do not use this file directly; use build.xml instead, which then uses this file."/>
|
|
</target>
|
|
|
|
|
|
<!-- This creates output files TEST* in the Jskad/ directory. -->
|
|
<target name="run-all-junit-tests"
|
|
description="Assuming that compilation of appropriate classes has been done, this target runs all the JUnit tests in the project.">
|
|
<junit fork="no" printsummary="yes" haltonfailure="no" haltonerror="no">
|
|
<classpath>
|
|
<pathelement location="${junitbin}"/>
|
|
<path refid="entire.class.path"/>
|
|
</classpath>
|
|
<formatter type="xml"/><!-- If not XML, then 'ant -buildfile
|
|
build.xml check-report' will fail. -->
|
|
<test name="org.thdl.tib.input.DuffPaneTest"/>
|
|
<test name="org.thdl.util.ThdlLazyExceptionTest"/>
|
|
<test name="org.thdl.util.TrieTest"/>
|
|
<test name="org.thdl.tib.input.TMW_RTF_TO_THDL_WYLIETest"/>
|
|
<test name="org.thdl.tib.text.tshegbar.UnicodeUtilsTest"/>
|
|
<test name="org.thdl.tib.text.tshegbar.LegalTshegBarTest"/>
|
|
<test name="org.thdl.tib.text.tshegbar.UnicodeGraphemeClusterTest"/>
|
|
<test name="org.thdl.tib.text.tshegbar.UnicodeCodepointToThdlWylieTest"/>
|
|
</junit>
|
|
</target>
|
|
|
|
<!-- Note the odd dependencies. -->
|
|
<target name="make-nightly-report"
|
|
description="Creates an HTML report about the status of the tests; is dependent (via build.xml) on target `run-all-junit-tests'.">
|
|
<junitreport todir="${dist}">
|
|
<fileset dir=".">
|
|
<include name="TEST-*.xml"/>
|
|
</fileset>
|
|
<report format="noframes" todir="${dist}"/>
|
|
</junitreport>
|
|
<delete file="${dist}/TESTS-TestSuites.xml"/>
|
|
</target>
|
|
</project>
|