[jboss-svn-commits] JBL Code SVN: r12837 - labs/jbossesb/trunk/product/rosetta.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Jun 25 15:07:39 EDT 2007


Author: beve
Date: 2007-06-25 15:07:39 -0400 (Mon, 25 Jun 2007)
New Revision: 12837

Modified:
   labs/jbossesb/trunk/product/rosetta/build.xml
Log:
Missed running the instr-report target. Copied the target and properties from the old core/build.xml


Modified: labs/jbossesb/trunk/product/rosetta/build.xml
===================================================================
--- labs/jbossesb/trunk/product/rosetta/build.xml	2007-06-25 18:19:06 UTC (rev 12836)
+++ labs/jbossesb/trunk/product/rosetta/build.xml	2007-06-25 19:07:39 UTC (rev 12837)
@@ -117,5 +117,20 @@
         <fileset dir="${org.jboss.esb.ext.lib.dir}" includes="*.jar"/>
     </path>
 
+	<property name="coverage.dir" location="${org.jboss.esb.internal.dest}/tests/coverage"/>
 
+	<target name="instr-report">
+        <emma>
+            <report sort="+block,+name,+method,+class" metrics="method:70,block:80,line:80,class:100">
+                <fileset dir="${coverage.dir}" >
+                    <include name="*/*.emma" />
+                </fileset>
+                <sourcepath><dirset dir="./" includes="src" /></sourcepath>
+                <txt outfile="${coverage.dir}/coverage.txt"/>
+            </report>
+        </emma>
+    </target>
+
+
+
 </project>




More information about the jboss-svn-commits mailing list