Index: /trunk/build.xml
===================================================================
--- /trunk/build.xml	(revision 10430)
+++ /trunk/build.xml	(revision 10431)
@@ -383,7 +383,8 @@
         <attribute name="testfamily"/>
         <attribute name="testITsuffix" default=""/>
+        <attribute name="coverage" default="true"/>
         <sequential>
             <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/>
-            <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec">
+            <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}">
                 <junit printsummary="yes" fork="true" forkmode="once">
                     <jvmarg value="-Dfile.encoding=UTF-8"/>
@@ -415,5 +416,5 @@
         <call-junit testfamily="unit"/>
         <call-junit testfamily="functional"/>
-        <call-junit testfamily="performance"/>
+        <call-junit testfamily="performance" coverage="false"/>
     </target>
     <target name="test-it" depends="test-compile" unless="test-it.notRequired"
@@ -421,5 +422,5 @@
         <call-junit testfamily="unit" testITsuffix="IT"/>
         <call-junit testfamily="functional" testITsuffix="IT"/>
-        <call-junit testfamily="performance" testITsuffix="IT"/>
+        <call-junit testfamily="performance" testITsuffix="IT" coverage="false"/>
     </target>
     <target name="test-html" depends="test, test-it" description="Generate HTML test reports">
