Disable flaky test for now (#11488)
Motivation: JdkOpenSslEngineInteroptTest.testMutualAuthSameCerts() is flaky on the CI and so fails the PR build quite often. Let's disable it for now until we were able to reproduce it locally and fix it. Modifications: Disable flaky test Result: More stable CI builds
This commit is contained in:
parent
8337e3a973
commit
2914134522
@ -16,6 +16,7 @@
|
||||
package io.netty.handler.ssl;
|
||||
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Parameterized;
|
||||
@ -76,6 +77,13 @@ public class JdkOpenSslEngineInteroptTest extends SSLEngineTest {
|
||||
return SslProvider.OPENSSL;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Test
|
||||
@Ignore("Disable until figured out why this sometimes fail on the CI")
|
||||
public void testMutualAuthSameCerts() throws Throwable {
|
||||
super.testMutualAuthSameCerts();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Test
|
||||
public void testMutualAuthInvalidIntermediateCASucceedWithOptionalClientAuth() throws Exception {
|
||||
|
Loading…
Reference in New Issue
Block a user