Remove @Ignore from test

This commit is contained in:
Norman Maurer 2020-09-02 14:18:49 +02:00
parent 44f2cba67a
commit 47f199653f

View File

@ -19,25 +19,13 @@ import io.netty.bootstrap.Bootstrap;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.testsuite.transport.TestsuitePermutation.BootstrapComboFactory;
import io.netty.testsuite.transport.socket.SocketEchoTest;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import java.util.List;
import static org.junit.Assume.assumeTrue;
public class IOUringSocketEchoTest extends SocketEchoTest {
@Override
protected List<BootstrapComboFactory<ServerBootstrap, Bootstrap>> newFactories() {
return IOUringSocketTestPermutation.INSTANCE.socket();
}
@Ignore("FIX ME")
@Test(timeout = 30000)
public void testSimpleEchoWithAdditionalExecutorAndVoidPromise() throws Throwable {
run();
}
}