You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2012/11/02 12:14:09 UTC

svn commit: r1404921 - in /camel/trunk/components: camel-ftp/pom.xml camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateTimeoutCompletionRestartTest.java

Author: davsclaus
Date: Fri Nov  2 11:14:09 2012
New Revision: 1404921

URL: http://svn.apache.org/viewvc?rev=1404921&view=rev
Log:
Skipt tests that may hang CI servers

Modified:
    camel/trunk/components/camel-ftp/pom.xml
    camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateTimeoutCompletionRestartTest.java

Modified: camel/trunk/components/camel-ftp/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/pom.xml?rev=1404921&r1=1404920&r2=1404921&view=diff
==============================================================================
--- camel/trunk/components/camel-ftp/pom.xml (original)
+++ camel/trunk/components/camel-ftp/pom.xml Fri Nov  2 11:14:09 2012
@@ -116,6 +116,7 @@
 
   <build>
     <plugins>
+
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
@@ -126,6 +127,18 @@
           </systemPropertyVariables>
         </configuration>
       </plugin>
+
+      <!-- skip sftp tests as they can hang CI servers -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>org/apache/camel/component/file/remote/sftp/**.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
     </plugins>
   </build>
 

Modified: camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateTimeoutCompletionRestartTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateTimeoutCompletionRestartTest.java?rev=1404921&r1=1404920&r2=1404921&view=diff
==============================================================================
--- camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateTimeoutCompletionRestartTest.java (original)
+++ camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateTimeoutCompletionRestartTest.java Fri Nov  2 11:14:09 2012
@@ -21,6 +21,7 @@ import org.apache.camel.builder.RouteBui
 import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.processor.aggregate.AggregationStrategy;
 import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Ignore;
 import org.junit.Test;
 
 public class HawtDBAggregateTimeoutCompletionRestartTest extends CamelTestSupport {
@@ -32,6 +33,7 @@ public class HawtDBAggregateTimeoutCompl
     }
 
     @Test
+    @Ignore("Can hang CI servers")
     public void testHawtDBAggregateTimeoutCompletionRestart() throws Exception {
         MockEndpoint mock = getMockEndpoint("mock:aggregated");
         mock.expectedMessageCount(0);