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:37:55 UTC

svn commit: r1692473 - in /lucene/dev/branches/branch_5x: ./ build.xml

Author: uschindler
Date: Fri Jul 24 09:37:55 2015
New Revision: 1692473

URL: http://svn.apache.org/r1692473
Log:
Merged revision(s) 1692472 from lucene/dev/trunk:
LUCENE-6693: Add one more parameter-pass-through #2

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/build.xml

Modified: lucene/dev/branches/branch_5x/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/build.xml?rev=1692473&r1=1692472&r2=1692473&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/build.xml (original)
+++ lucene/dev/branches/branch_5x/build.xml Fri Jul 24 09:37:55 2015
@@ -648,7 +648,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>
@@ -678,7 +678,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">