[Mocklib-checkins] mocklib2/bldfiles build.xml,1.5,1.6
Brought to you by:
bittwidler,
fastdragon
From: Nobody <fas...@us...> - 2005-12-21 20:01:48
|
Update of /cvsroot/mocklib/mocklib2/bldfiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23081/bldfiles Modified Files: build.xml Log Message: fix emma report location! Index: build.xml =================================================================== RCS file: /cvsroot/mocklib/mocklib2/bldfiles/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** build.xml 21 Dec 2005 19:05:55 -0000 1.5 --- build.xml 21 Dec 2005 20:01:27 -0000 1.6 *************** *** 464,467 **** --- 464,475 ---- <fail if="is.test.fail"/> + <!-- emma is not playing nice so we must feed it the absolute path of + the report directory, otherwise if run from another directory, it + puts it relative to that instead of relative to base dir --> + <property name="report.tmp" location="${codecov.report}"/> + + <echo message="HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH"/> + <echo message="report=${report.tmp}"/> + <emma enabled="${emma.enabled}" > <report sourcepath="${javacode}:${versioning.src}" > *************** *** 470,475 **** </fileset> ! <txt outfile="${codecov.report}/coverage.txt" /> ! <html outfile="${codecov.report}/coverage.html" /> </report> </emma> --- 478,483 ---- </fileset> ! <txt outfile="${report.tmp}/coverage.txt" /> ! <html outfile="${report.tmp}/coverage.html" /> </report> </emma> |