Ignore read/write timeout tests

This commit is contained in:
Greg Wilkins 2015-07-23 19:47:40 +10:00
parent ea7c0fed30
commit e1827f659e
1 changed files with 4 additions and 2 deletions

View File

@ -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);