<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="tmp-build.xml" default="all">
<target name="tests">
<junit printsummary="on" fork="true" haltonfailure="false" failureproperty="failure_found" showoutput="true">
</junit>
</target>
<target name="check_failures" if="failure_found"> <fail message="Failures found"/> </target>
</project>