fix top-level compile-test to compile core tests as advertised

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1332318 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-04-30 18:03:53 +00:00
parent c58ad92c53
commit 01c4d4ada9
1 changed files with 7 additions and 3 deletions

View File

@ -411,9 +411,13 @@
<modules-crawl target="build-artifacts-and-tests"/>
</target>
<target name="compile-test" depends="compile-lucene-core,compile-test-framework"
description="Builds core, test-framework, and modules tests">
<modules-crawl target="compile-test" failonerror="true"/>
<target name="compile-test" description="Builds core, test-framework, and modules tests">
<sequential>
<ant dir="core" target="compile-test" inheritall="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
<modules-crawl target="compile-test" failonerror="true"/>
</sequential>
</target>
<target name="test-modules" depends="compile-test">