blob: 24c3b231e4ce9d8d0e6b3a590d6f053b6f8cb9f6 [file] [log] [blame]
<?xml version="1.0"?>
<project name="tck" default="pretty-test">
<!-- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
<!-- directories -->
<!-- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
<property name="test.reports.dir" value="target/test-reports"/>
<target name="cruise" description="to be started by the CruiseControl build server">
<echo message="hook for your build"/>
</target>
<target name="pretty-test"
description="HTML output of test cases">
<junitreport todir="${test.reports.dir}">
<fileset dir="${test.reports.dir}">
<include name="TEST-*.xml"/>
</fileset>
<report format="frames" todir="${test.reports.dir}"/>
</junitreport>
</target>
</project>