From: Michael D. <mik...@us...> - 2004-12-08 15:31:10
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9503/src/NHibernate Modified Files: NHibernate.build Log Message: Modified build files for new Iesi.Collections.Test and modified how clover enabled builds are run. Index: NHibernate.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.build,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NHibernate.build 27 Nov 2004 18:58:42 -0000 1.6 --- NHibernate.build 8 Dec 2004 15:30:54 -0000 1.7 *************** *** 18,21 **** --- 18,23 ---- * sign - (true|false) indicates if the Assembly should be signed. * clover.enabled - (true|false) indicates if Clover.NET should handle the build + * clover.src - location of the clovered source to be stored at from the root of nhibernate + * clover.db - location of the coverage db from the root of nhibernate --> *************** *** 29,38 **** <if propertytrue="clover.enabled"> - <mkdir dir="..\CloverBuild" /> <clover-setup ! initstring="..\CloverBuild\clover.cdb" ! builddir="..\CloverBuild" ! enabled="${clover.enabled}" ! flushinterval="1000" /> </if> --- 31,39 ---- <if propertytrue="clover.enabled"> <clover-setup ! initstring="..\..\${clover.db}" ! builddir="..\..\${clover.src}\${nant.project.name}" ! enabled="${clover.enabled}" ! flushinterval="1000" /> </if> *************** *** 96,119 **** </target> - <target name="coverage-report"> - - <if propertytrue="clover.enabled"> - - <mkdir dir="${build.dir}/clover" /> - <clover-setup - initstring="..\CloverBuild\clover.cdb" - builddir="..\CloverBuild" - enabled="${clover.enabled}" - flushinterval="1000" - /> - <clover-report> - <current title="NHibernate Clover Report" output="${build.dir}/clover" > - <format type="html" orderBy="Alpha" /> - </current> - </clover-report> - - </if> - - </target> - </project> \ No newline at end of file --- 97,99 ---- |