You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2012/04/15 21:08:59 UTC

svn commit: r1326402 - /lucene/dev/trunk/lucene/common-build.xml

Author: dweiss
Date: Sun Apr 15 19:08:59 2012
New Revision: 1326402

URL: http://svn.apache.org/viewvc?rev=1326402&view=rev
Log:
LUCENE-3989: correcting depends for other tasks that deal with execution hints. Nuked sha1 target as it's available in the top build.

Modified:
    lucene/dev/trunk/lucene/common-build.xml

Modified: lucene/dev/trunk/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/common-build.xml?rev=1326402&r1=1326401&r2=1326402&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/common-build.xml (original)
+++ lucene/dev/trunk/lucene/common-build.xml Sun Apr 15 19:08:59 2012
@@ -613,7 +613,7 @@
   	</sequential>
   </macrodef>
 
-  <target name="test-updatecache" description="Overwrite tests' timings cache for balancing." depends="init">
+  <target name="test-updatecache" description="Overwrite tests' timings cache for balancing." depends="install-junit4-taskdef">
     <mergehints file="${common.dir}/tools/junit4/cached-timehints.txt">
       <resources>
         <!-- The order is important. Include previous stats first, then append new stats. -->
@@ -819,7 +819,7 @@
     </sequential>
   </macrodef>
 
-  <target name="test-times" description="Show the slowest tests (averages)." depends="init">
+  <target name="test-times" description="Show the slowest tests (averages)." depends="install-junit4-taskdef">
     <property name="max" value="10" />
     <echo>Showing ${max} slowest tests according to local stats. (change with -Dmax=...).</echo>
     <tophints max="${max}">
@@ -936,14 +936,6 @@ ${tests-output}/junit4-*.suites     - pe
     <test-macro threadNum="${tests.threadspercpu}" />
   </target>
 
-  <target name="refresh-checksums">
-    <checksum algorithm="SHA1">
-      <fileset dir="${basedir}">
-        <include name="**/*.jar"/>
-      </fileset>
-    </checksum>
-  </target>
-
   <!--
    If you want clover test code coverage, run this before the tests.  You need clover.jar and the license in your ANT classspath and you need to specify -Drun.clover=true on the command line.