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 2012/09/23 14:55:28 UTC

svn commit: r1389036 - in /lucene/dev/branches/branch_4x: ./ build.xml

Author: uschindler
Date: Sun Sep 23 12:55:27 2012
New Revision: 1389036

URL: http://svn.apache.org/viewvc?rev=1389036&view=rev
Log:
Merged revision(s) 1389034 from lucene/dev/trunk:
Make Clover runs be immune to test failures, also run bad apples when determining coverage

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

Modified: lucene/dev/branches/branch_4x/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/build.xml?rev=1389036&r1=1389035&r2=1389036&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/build.xml (original)
+++ lucene/dev/branches/branch_4x/build.xml Sun Sep 23 12:55:27 2012
@@ -316,7 +316,9 @@
       <param name="tests.multiplier" value="1"/>
       <param name="tests.nightly" value="false"/>
       <param name="tests.weekly" value="false"/>
-      <param name="tests.multiplier" value="1"/>
+      <param name="tests.badapples" value="true"/>
+      <!-- The idea behind Clover is to determine test coverage, so be immune to failing tests: -->
+      <param name="tests.haltonfailure" value="false"/>
     </antcall>
   </target>
   <target name="-jenkins-clover" depends="clean,test,generate-clover-reports"/>