Revision: 16158 http://gate.svn.sourceforge.net/gate/?rev=16158&view=rev Author: johann_p Date: 2012-10-26 10:09:03 +0000 (Fri, 26 Oct 2012) Log Message: ----------- Add a target test.reports that will re-run all tests and create an HTML report file for all tests.
Modified Paths: -------------- gate/trunk/plugins/Ontology/build.xml Modified: gate/trunk/plugins/Ontology/build.xml =================================================================== --- gate/trunk/plugins/Ontology/build.xml 2012-10-26 01:20:24 UTC (rev 16157) +++ gate/trunk/plugins/Ontology/build.xml 2012-10-26 10:09:03 UTC (rev 16158) @@ -206,16 +206,28 @@ <target name="test" depends="testowlim,testw3tests,testontotest1,testtuplequery,testtriplestore,testontowine" /> - <!-- Targets used by the main GATE build file --> - <target name="build" depends="jar" /> - <target name="distro.prepare" depends="clean.classes"> - <!-- do not delete jar --> - <delete dir="${build}" /> + <target name="test.reports" depends="test.reports.prepare,test"> + <junitreport> + <fileset dir="."> + <include name="TEST-*.xml" /> + </fileset> + <report todir="." format="noframes" /> + </junitreport> + </target> + + <target name="test.reports.prepare"> <delete> <fileset dir="." includes="TEST*.xml" /> <fileset dir="." includes="TEST*.txt" /> </delete> </target> + + <!-- Targets used by the main GATE build file --> + <target name="build" depends="jar" /> + <target name="distro.prepare" depends="clean.classes,test.reports.prepare"> + <!-- do not delete jar --> + <delete dir="${build}" /> + </target> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_sfd2d_oct _______________________________________________ GATE-cvs mailing list GATE-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gate-cvs