You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2015/07/24 11:36:36 UTC

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

Author: uschindler
Date: Fri Jul 24 09:36:36 2015
New Revision: 1692472

URL: http://svn.apache.org/r1692472
Log:
LUCENE-6693: Add one more parameter-pass-through #2

Modified:
    lucene/dev/trunk/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1692472&r1=1692471&r2=1692472&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Fri Jul 24 09:36:36 2015
@@ -638,7 +638,7 @@ File | Project Structure | Platform Sett
     <echo>You can find the merged Lucene/Solr Clover report in '${clover.report.dir}'.</echo>
   </target>
 
-  <target name="test-with-heapdumps" depends="-test-with-heapdumps-enabled,-test-with-heapdumps-disabled" description="Runs tests with heap dumps on OOM enabled (if VM supports this)"/>
+  <target name="test-with-heapdumps" depends="resolve-groovy,-test-with-heapdumps-enabled,-test-with-heapdumps-disabled" description="Runs tests with heap dumps on OOM enabled (if VM supports this)"/>
   
   <condition property="vm.supports.heapdumps">
     <or>
@@ -668,7 +668,9 @@ File | Project Structure | Platform Sett
 
   <target name="-test-with-heapdumps-disabled" unless="vm.supports.heapdumps">
     <echo level="warning" message="WARN: The used JVM (${java.vm.name}) does not support HPROF heap dumps on OutOfMemoryError."/>
-    <antcall target="test"/>
+    <antcall target="test">
+      <propertyset refid="uptodate.and.compiled.properties"/>
+    </antcall>
   </target>
 
   <target name="regenerate" description="Runs all code regenerators">