Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1092210989 for ; Fri, 8 Nov 2013 14:18:19 +0000 (UTC) Received: (qmail 42986 invoked by uid 500); 8 Nov 2013 14:18:13 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 42904 invoked by uid 500); 8 Nov 2013 14:18:09 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 42850 invoked by uid 99); 8 Nov 2013 14:18:08 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Nov 2013 14:18:08 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2FE9E8159E5; Fri, 8 Nov 2013 14:18:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Fri, 08 Nov 2013 14:18:08 -0000 Message-Id: <322643907a63494c94819733150db42b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/8] git commit: Skip these tests running on Windows, like we do with jetty also Updated Branches: refs/heads/camel-2.11.x 67c63ee26 -> 31fddb73c refs/heads/camel-2.12.x ca791ef40 -> e771d52c5 refs/heads/master 55ef85040 -> 85e00fed9 Skip these tests running on Windows, like we do with jetty also Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a6a33100 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a6a33100 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a6a33100 Branch: refs/heads/master Commit: a6a3310060d981401ff6bbbe5da6b5356924a261 Parents: 55ef850 Author: Claus Ibsen Authored: Fri Nov 8 15:01:16 2013 +0100 Committer: Claus Ibsen Committed: Fri Nov 8 15:01:16 2013 +0100 ---------------------------------------------------------------------- .../component/netty/http/NettyHttpSuspendResume503Test.java | 5 +++++ .../camel/component/netty/http/NettyHttpSuspendResumeTest.java | 5 +++++ 2 files changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/a6a33100/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResume503Test.java ---------------------------------------------------------------------- diff --git a/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResume503Test.java b/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResume503Test.java index 373e439..b3f3d8b 100644 --- a/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResume503Test.java +++ b/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResume503Test.java @@ -25,6 +25,11 @@ public class NettyHttpSuspendResume503Test extends BaseNettyTest { @Test public void testNettySuspendResume() throws Exception { + // these tests does not run well on Windows + if (isPlatform("windows")) { + return; + } + context.getShutdownStrategy().setTimeout(50); String reply = template.requestBody(serverUri, "World", String.class); http://git-wip-us.apache.org/repos/asf/camel/blob/a6a33100/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResumeTest.java ---------------------------------------------------------------------- diff --git a/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResumeTest.java b/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResumeTest.java index dbc4893..e9ef2eb 100644 --- a/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResumeTest.java +++ b/components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpSuspendResumeTest.java @@ -25,6 +25,11 @@ public class NettyHttpSuspendResumeTest extends BaseNettyTest { @Test public void testNettySuspendResume() throws Exception { + // these tests does not run well on Windows + if (isPlatform("windows")) { + return; + } + context.getShutdownStrategy().setTimeout(50); String reply = template.requestBody(serverUri, "World", String.class);