updated build file and changed title in readme

This commit is contained in:
Ziver Koc 2016-09-29 15:18:00 +02:00
parent 998cfb2f0b
commit ab8239a809
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
# Hal
# Zutil
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

View file

@ -39,7 +39,7 @@
<target name="test" depends="build-test">
<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" />
<formatter type="plain" usefile="false" /> <!-- to screen -->
<formatter type="xml" /> <!-- to file -->
@ -48,6 +48,7 @@
<fileset dir="${buildTestDir}" includes="**/*.class" />
</batchtest>
</junit>
<fail message="Test failure detected, check test results." if="test.failed" /> <!-- Need this to fail build -->
</target>
<!-- ________________________ BUILD TARGETS ________________________ -->