You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/04/30 20:03:54 UTC

svn commit: r1332318 - /lucene/dev/trunk/lucene/build.xml

Author: rmuir
Date: Mon Apr 30 18:03:53 2012
New Revision: 1332318

URL: http://svn.apache.org/viewvc?rev=1332318&view=rev
Log:
fix top-level compile-test to compile core tests as advertised

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

Modified: lucene/dev/trunk/lucene/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/build.xml?rev=1332318&r1=1332317&r2=1332318&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/build.xml (original)
+++ lucene/dev/trunk/lucene/build.xml Mon Apr 30 18:03:53 2012
@@ -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">