HADOOP-6971. Clover build doesn't generate per-test coverage. Contributed by Konstantin Boudnik

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1004107 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Konstantin Boudnik 2010-10-04 04:32:34 +00:00
parent c7e1a1c4c1
commit 4f2c6bc4b2
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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>