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:
Norman Maurer 2021-07-14 16:42:34 +02:00 committed by GitHub
parent 8337e3a973
commit 2914134522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {