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 2014/12/08 22:49:35 UTC

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

Author: rmuir
Date: Mon Dec  8 21:49:35 2014
New Revision: 1643940

URL: http://svn.apache.org/r1643940
Log:
fix broken failonerror=false in these targets

Modified:
    lucene/dev/trunk/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1643940&r1=1643939&r2=1643940&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Mon Dec  8 21:49:35 2014
@@ -62,7 +62,7 @@
   </target>
 
   <target name="pitest" description="Run PITest on both Lucene and Solr">
-    <subant target="pitest" inheritall="false" failonerror="false">
+    <subant target="pitest" inheritall="false" failonerror="true">
       <fileset dir="lucene" includes="build.xml" />
       <fileset dir="solr" includes="build.xml" />
     </subant>
@@ -481,7 +481,7 @@ File | Project Structure | Platform Sett
   </target>
 
   <target name="regenerate" description="Runs all code regenerators">
-    <subant target="regenerate" inheritall="false" failonerror="false">
+    <subant target="regenerate" inheritall="false" failonerror="true">
       <fileset dir="lucene" includes="build.xml" />
       <!-- todo:
       <fileset dir="solr" includes="build.xml" />-->