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 2014/09/04 12:47:17 UTC

svn commit: r1622449 - /lucene/dev/trunk/lucene/common-build.xml

Author: uschindler
Date: Thu Sep  4 10:47:17 2014
New Revision: 1622449

URL: http://svn.apache.org/r1622449
Log:
LUCENE-5920: Revert previous commits (but leave the else attributes)

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

Modified: lucene/dev/trunk/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/common-build.xml?rev=1622449&r1=1622448&r2=1622449&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/common-build.xml (original)
+++ lucene/dev/trunk/lucene/common-build.xml Thu Sep  4 10:47:17 2014
@@ -146,9 +146,7 @@
   <!-- Max width for class name truncation.  -->
   <property name="tests.maxClassNameColumns" value="10000" />
   <!-- Show suite summaries for tests. -->
-  <condition property="tests.showSuiteSummary" value="false" else="true">
-    <isset property="beast.iters"/>
-  </condition>
+  <property name="tests.showSuiteSummary" value="true" />
   <!-- Show timestamps in console test reports. -->
   <property name="tests.timestamps" value="false" />
   <!-- Heartbeat in seconds for reporting long running tests or hung forked JVMs. -->
@@ -833,28 +831,16 @@
   </condition>
 
   <condition property="tests.showSuccess" value="true" else="false">
-    <and>
-      <or>
-        <isset property="tests.class" />
-        <isset property="tests.method" />
-      </or>
-      <not>
-        <isset property="beast.iters" />
-      </not>
-    </and>
+    <or>
+      <isset property="tests.class" />
+      <isset property="tests.method" />
+    </or>
   </condition>
 
   <condition property="tests.showOutput" value="always" else="onerror">
     <or>
-      <and>
-        <or>
-          <isset property="tests.class" />
-          <isset property="tests.method" />
-        </or>
-        <not>
-          <isset property="beast.iters" />
-        </not>
-      </and>
+      <isset property="tests.class" />
+      <isset property="tests.method" />
       <istrue value="${tests.showSuccess}"/>
     </or>
   </condition>
@@ -1161,11 +1147,8 @@
         <echo file="${tests.totals.tmpfile}" append="true" encoding="UTF-8"># module: ${ant.project.name}&#x000a;${junit4.stats.nonIgnored}&#x000a;</echo>
 
         <!-- Report the 5 slowest tests from this run to the console. -->
-        <local name="tests.showtophints"/>
-        <condition property="tests.showtophints" value="0" else="5">
-          <isset property="beast.iters"/>
-        </condition>
-        <junit4:tophints max="${tests.showtophints}" taskname="slow-tests">
+        <echo>5 slowest tests:</echo>
+        <junit4:tophints max="5">
           <file file="${tests.cachedir}/${name}/timehints.txt" />
         </junit4:tophints>
     </sequential>