Browse Source

HADOOP-3575. Fix the clover ant target after package refactoring. Contributed
by Nigel Daley.




git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@668588 13f79535-47bb-0310-9956-ffa450edef68

Christopher Douglas 17 years ago
parent
commit
6ab924331a
2 changed files with 4 additions and 1 deletions
  1. 3 0
      CHANGES.txt
  2. 1 1
      build.xml

+ 3 - 0
CHANGES.txt

@@ -610,6 +610,9 @@ Release 0.18.0 - Unreleased
     HADOOP-3561. Prevent the trash from deleting its parent directories.
     (cdouglas)
 
+    HADOOP-3575. Fix the clover ant target after package refactoring.
+    (Nigel Daley via cdouglas)
+
 Release 0.17.0 - 2008-05-18
 
   INCOMPATIBLE CHANGES

+ 1 - 1
build.xml

@@ -1137,7 +1137,7 @@
    <taskdef resource="clovertasks"/>
    <mkdir dir="${clover.db.dir}"/>
    <clover-setup initString="${clover.db.dir}/hadoop_coverage.db">
-     <fileset dir="src/java"/>
+     <fileset dir="src" includes="core/**/* tools/**/* hdfs/**/* mapred/**/*"/>
    </clover-setup>
 </target>