updated build file and changed title in readme
This commit is contained in:
parent
998cfb2f0b
commit
ab8239a809
2 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
# Hal
|
# Zutil
|
||||||
|
|
||||||
This project is a collection of utility classes and methods that I use in most
|
This project is a collection of utility classes and methods that I use in most
|
||||||
of my projects. Some of the code is incomplete and might never be completed
|
of my projects. Some of the code is incomplete and might never be completed
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
<target name="test" depends="build-test">
|
<target name="test" depends="build-test">
|
||||||
<mkdir dir="${reportsDir}" />
|
<mkdir dir="${reportsDir}" />
|
||||||
<junit printsummary="yes" haltonfailure="false" fork="true" timeout="3000000">
|
<junit printsummary="yes" fork="true" haltonfailure="false" failureproperty="test.failed" timeout="3000000">
|
||||||
<classpath refid="classpath.test" />
|
<classpath refid="classpath.test" />
|
||||||
<formatter type="plain" usefile="false" /> <!-- to screen -->
|
<formatter type="plain" usefile="false" /> <!-- to screen -->
|
||||||
<formatter type="xml" /> <!-- to file -->
|
<formatter type="xml" /> <!-- to file -->
|
||||||
|
|
@ -48,6 +48,7 @@
|
||||||
<fileset dir="${buildTestDir}" includes="**/*.class" />
|
<fileset dir="${buildTestDir}" includes="**/*.class" />
|
||||||
</batchtest>
|
</batchtest>
|
||||||
</junit>
|
</junit>
|
||||||
|
<fail message="Test failure detected, check test results." if="test.failed" /> <!-- Need this to fail build -->
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ________________________ BUILD TARGETS ________________________ -->
|
<!-- ________________________ BUILD TARGETS ________________________ -->
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue