LUCENE-3989: correcting depends for other tasks that deal with execution hints. Nuked sha1 target as it's available in the top build.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1326402 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dawid Weiss 2012-04-15 19:08:59 +00:00
parent e3d6f9d04d
commit f33e259b84
1 changed files with 2 additions and 10 deletions

View File

@ -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 - per-JVM executed suites
<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.