<fail unless="good-ant-version?">This branch must be built using Ant 1.6.x with x >= 2</fail>
</target>
- <target name="test" depends="compile-tests">
+ <target name="junit-test" depends="compile-tests">
<junit
printsummary="false"
haltonfailure="false"
- failureproperty="tests.failed"
+ failureproperty="junit.tests.failed"
filtertrace="false"
fork="true"
forkmode="once"
</classpath>
<batchtest>
- <fileset dir="src/testcases"/>
+ <fileset dir="${src.junit}"/>
</batchtest>
<formatter type="plain" usefile="false"/>
</junit>
- <fail if="tests.failed">At least one test has failed.</fail>
</target>
-</project>
\ No newline at end of file
+</project>