You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by co...@apache.org on 2010/10/04 06:32:34 UTC

svn commit: r1004107 - in /hadoop/common/trunk: CHANGES.txt build.xml

Author: cos
Date: Mon Oct  4 04:32:34 2010
New Revision: 1004107

URL: http://svn.apache.org/viewvc?rev=1004107&view=rev
Log:
HADOOP-6971. Clover build doesn't generate per-test coverage. Contributed by Konstantin Boudnik

Modified:
    hadoop/common/trunk/CHANGES.txt
    hadoop/common/trunk/build.xml

Modified: hadoop/common/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/CHANGES.txt?rev=1004107&r1=1004106&r2=1004107&view=diff
==============================================================================
--- hadoop/common/trunk/CHANGES.txt (original)
+++ hadoop/common/trunk/CHANGES.txt Mon Oct  4 04:32:34 2010
@@ -1847,6 +1847,8 @@ Release 0.21.0 - Unreleased
     HADOOP-6875. [Herriot] Cleanup of temp. configurations is needed upon
     restart of a cluster (Vinay Thota via cos)
 
+    HADOOP-6971. Clover build doesn't generate per-test coverage (cos)
+
 Release 0.20.3 - Unreleased
 
   NEW FEATURES

Modified: hadoop/common/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/build.xml?rev=1004107&r1=1004106&r2=1004107&view=diff
==============================================================================
--- hadoop/common/trunk/build.xml (original)
+++ hadoop/common/trunk/build.xml Mon Oct  4 04:32:34 2010
@@ -1435,7 +1435,8 @@
    <taskdef resource="cloverlib.xml" classpath="${clover.jar}"/>
    <mkdir dir="${clover.db.dir}"/>
    <clover-setup initString="${clover.db.dir}/hadoop_coverage.db">
-     <fileset dir="src" includes="java/**/*"/>
+     <fileset dir="${src.dir}" includes="java/**/*"/>
+     <testsources dir="${test.src.dir}"/>
    </clover-setup>
 </target>