blob: c02705b5e4765c67751c2dfa99d4199506a74cbc [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="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>