Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2015-07-23 09:47:40 +0000
committerGreg Wilkins2015-07-23 09:47:40 +0000
commite1827f659e30614795b3f14cc69b71475da37c4f (patch)
tree374a3fe01856d17766b500b11b4c03418de39156
parentea7c0fed300848181eff127cf66cde209a15ef2b (diff)
downloadorg.eclipse.jetty.project-e1827f659e30614795b3f14cc69b71475da37c4f.tar.gz
org.eclipse.jetty.project-e1827f659e30614795b3f14cc69b71475da37c4f.tar.xz
org.eclipse.jetty.project-e1827f659e30614795b3f14cc69b71475da37c4f.zip
Ignore read/write timeout tests
-rw-r--r--jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java b/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java
index 3f3678dedc..caad44978f 100644
--- a/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java
+++ b/jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorTimeoutTest.java
@@ -369,7 +369,7 @@ public abstract class ConnectorTimeoutTest extends HttpServerTestFixture
}
@Test(timeout=60000)
- @Ignore
+ @Ignore // TODO make more stable
public void testNoBlockingTimeoutRead() throws Exception
{
_httpConfiguration.setBlockingTimeout(-1L);
@@ -428,6 +428,7 @@ public abstract class ConnectorTimeoutTest extends HttpServerTestFixture
}
@Test(timeout=60000)
+ @Ignore // TODO make more stable
public void testBlockingTimeoutRead() throws Exception
{
_httpConfiguration.setBlockingTimeout(750L);
@@ -496,7 +497,7 @@ public abstract class ConnectorTimeoutTest extends HttpServerTestFixture
}
@Test(timeout=60000)
- @Ignore
+ @Ignore // TODO make more stable
public void testNoBlockingTimeoutWrite() throws Exception
{
configureServer(new HugeResponseHandler());
@@ -536,6 +537,7 @@ public abstract class ConnectorTimeoutTest extends HttpServerTestFixture
}
@Test(timeout=60000)
+ @Ignore // TODO make more stable
public void testBlockingTimeoutWrite() throws Exception
{
_httpConfiguration.setBlockingTimeout(750L);

Back to the top