You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/10/17 14:12:11 UTC

svn commit: r1023472 - in /commons/proper/collections/trunk: build.xml pom.xml

Author: sebb
Date: Sun Oct 17 12:12:11 2010
New Revision: 1023472

URL: http://svn.apache.org/viewvc?rev=1023472&view=rev
Log:
TestAll* caught too many test classes
TestHashMap is not abstract

Modified:
    commons/proper/collections/trunk/build.xml
    commons/proper/collections/trunk/pom.xml

Modified: commons/proper/collections/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/build.xml?rev=1023472&r1=1023471&r2=1023472&view=diff
==============================================================================
--- commons/proper/collections/trunk/build.xml (original)
+++ commons/proper/collections/trunk/build.xml Sun Oct 17 12:12:11 2010
@@ -345,11 +345,13 @@ limitations under the License.
       <batchtest fork="${test.fork}" todir="${build.test.reports}">
         <fileset dir="${source.test}">
           <include name="**/Test*.java"/>
-          <exclude name="**/TestAll*.java"/>
+          <!-- Exclude groups of tests -->
+          <exclude name="**/TestAll.java"/>
+          <exclude name="**/TestAllPackages.java"/>
+          <!-- Exclude Asbtract classes -->
           <exclude name="**/TestAbstract*"/>
           <exclude name="**/TestArrayList.java"/>
           <exclude name="**/TestLinkedList.java"/>
-          <exclude name="**/TestHashMap.java"/>
           <exclude name="**/TestTreeMap.java"/>
           <exclude name="**/TestTypedCollection.java"/>
           <exclude name="**/TestAnyAllOnePredicate.java"/>

Modified: commons/proper/collections/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/pom.xml?rev=1023472&r1=1023471&r2=1023472&view=diff
==============================================================================
--- commons/proper/collections/trunk/pom.xml (original)
+++ commons/proper/collections/trunk/pom.xml Sun Oct 17 12:12:11 2010
@@ -399,11 +399,13 @@
               </includes>
               <excludes>
                 <exclude>**/*$*</exclude>
-                <exclude >**/TestAll*.java</exclude>
+                <!-- Exclude groups of tests -->
+                <exclude >**/TestAll.java</exclude>
+                <exclude >**/TestAllPackages.java</exclude>
+                <!-- Exclude Asbtract classes -->
                 <exclude >**/TestAbstract*</exclude>
                 <exclude >**/TestArrayList.java</exclude>
                 <exclude >**/TestLinkedList.java</exclude>
-                <exclude >**/TestHashMap.java</exclude>
                 <exclude >**/TestTreeMap.java</exclude>
                 <exclude >**/TestTypedCollection.java</exclude>
                 <exclude >**/TestAnyAllOnePredicate.java</exclude>