Author: markt
Date: Thu Dec 29 19:45:58 2011
New Revision: 1225629

URL: http://svn.apache.org/viewvc?rev=1225629&view=rev
Log:
Make frequently failing test disabled by default until we can figure out
what is going wrong

Modified:
    tomcat/trunk/build.properties.default
    tomcat/trunk/build.xml

Modified: tomcat/trunk/build.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/build.properties.default?rev=1225629&r1=1225628&r2=1225629&view=diff
==============================================================================
--- tomcat/trunk/build.properties.default (original)
+++ tomcat/trunk/build.properties.default Thu Dec 29 19:45:58 2011
@@ -36,6 +36,9 @@ version.suffix=-dev
 execute.validate=false
 execute.test.bio=true
 execute.test.nio=true
+# Comet tests fail regularly during shutdown. Disable for now as the frequent
+# failures make it harder to spot other test failures in the CI builds
+execute.test.comet=false
 # Still requires APR/native library to be present
 execute.test.apr=true
 # Stop testing if a failure occurs

Modified: tomcat/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1225629&r1=1225628&r2=1225629&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Thu Dec 29 19:45:58 2011
@@ -1138,6 +1138,8 @@
             <exclude name="**/Tester*.java" />
             <!-- Exclude the tests known to fail -->
             <exclude name="org/apache/catalina/tribes/test/**" />
+            <exclude name="org/apache/catalina/comet/TestCometProcessor.java"
+                     unless="${execute.test.comet}"/>
           </fileset>
         </batchtest>
       </junit>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to