Disable the timeout of some tests in SocketEchoTest to find out why it is hanging in CI

This commit is contained in:
Trustin Lee 2013-07-17 16:02:14 +09:00
parent 8e71186153
commit b9bae2b5e4

View File

@ -67,7 +67,7 @@ public class SocketEchoTest extends AbstractSocketTest {
testSimpleEcho0(sb, cb, false, false);
}
@Test(timeout = 30000)
@Test//(timeout = 30000)
public void testSimpleEchoWithAdditionalExecutor() throws Throwable {
run();
}
@ -76,7 +76,7 @@ public class SocketEchoTest extends AbstractSocketTest {
testSimpleEcho0(sb, cb, true, false);
}
@Test(timeout = 30000)
@Test//(timeout = 30000)
public void testSimpleEchoWithVoidPromise() throws Throwable {
run();
}