Author: sebb
Date: Mon Sep 12 19:16:03 2011
New Revision: 1169875

URL: http://svn.apache.org/viewvc?rev=1169875&view=rev
Log:
Exclusion was not working, because we are now pool2

Modified:
    commons/proper/pool/trunk/pom.xml

Modified: commons/proper/pool/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/pool/trunk/pom.xml?rev=1169875&r1=1169874&r2=1169875&view=diff
==============================================================================
--- commons/proper/pool/trunk/pom.xml (original)
+++ commons/proper/pool/trunk/pom.xml Mon Sep 12 19:16:03 2011
@@ -165,7 +165,7 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
-             <!-- Don't allow test to run for more that 30 minutes -->
+             <!-- Don't allow test to run for more than 30 minutes -->
               
<forkedProcessTimeoutInSeconds>1800</forkedProcessTimeoutInSeconds>
               <includes>
                 <include>**/Test*.java</include>
@@ -173,7 +173,8 @@
               <excludes>
                 <!-- nested classes are not handled properly by Surefire -->
                 <exclude>**/Test*$*.java</exclude>
-                
<exclude>org/apache/commons/pool/impl/TestSoftRefOutOfMemory.java</exclude>
+                <!-- Don't run this test by default - it uses lots of memory 
-->
+                <exclude>**/TestSoftRefOutOfMemory.java</exclude>
               </excludes>
             </configuration>
           </plugin>


Reply via email to