This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 11.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/11.0.x by this push:
     new 4a3ea92612 Remove these tests. Tomcat Native is being refactored.
4a3ea92612 is described below

commit 4a3ea92612f22c9bee3b35e807434753eeac4044
Author: Mark Thomas <[email protected]>
AuthorDate: Fri Dec 19 12:49:41 2025 +0000

    Remove these tests. Tomcat Native is being refactored.
---
 .../tomcat/util/net/TestClientCertTls13.java       | 33 ----------------------
 1 file changed, 33 deletions(-)

diff --git a/test/org/apache/tomcat/util/net/TestClientCertTls13.java 
b/test/org/apache/tomcat/util/net/TestClientCertTls13.java
index 79515982b7..0b103fa40c 100644
--- a/test/org/apache/tomcat/util/net/TestClientCertTls13.java
+++ b/test/org/apache/tomcat/util/net/TestClientCertTls13.java
@@ -23,7 +23,6 @@ import java.util.List;
 
 import org.junit.Assert;
 import org.junit.Assume;
-import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
@@ -109,38 +108,6 @@ public class TestClientCertTls13 extends TomcatBaseTest {
         Assert.assertEquals("OK-" + size, res.toString());
     }
 
-    @Test
-    @Ignore // Currently fails with Tomcat Native 1.3.2 (unreleased)
-    public void testCiphersTLS12Only() throws Exception {
-        Tomcat tomcat = getTomcatInstance();
-        SSLHostConfig sslHostConfig = 
tomcat.getConnector().findSslHostConfigs()[0];
-        sslHostConfig.setCiphers(SSLHostConfig.DEFAULT_TLS_12_BELOW_CIPHERS);
-
-        tomcat.start();
-
-        Assume.assumeFalse("LibreSSL does not allow PHA",
-                TesterSupport.isOpenSSLVariant(sslImplementationName, 
OpenSSLStatus.Name.LIBRESSL));
-
-        ByteChunk res = getUrl("https://localhost:"; + getPort() + 
"/protected");
-        Assert.assertEquals("OK-" + TesterSupport.ROLE, res.toString());
-    }
-
-    @Test
-    @Ignore // Currently fails with Tomcat Native 1.3.1
-    public void testCiphersTLS13Only() throws Exception {
-        Tomcat tomcat = getTomcatInstance();
-        SSLHostConfig sslHostConfig = 
tomcat.getConnector().findSslHostConfigs()[0];
-        sslHostConfig.setCiphers(SSLHostConfig.DEFAULT_TLS_13_ABOVE_CIPHERS);
-
-        tomcat.start();
-
-        Assume.assumeFalse("LibreSSL does not allow PHA",
-                TesterSupport.isOpenSSLVariant(sslImplementationName, 
OpenSSLStatus.Name.LIBRESSL));
-
-        ByteChunk res = getUrl("https://localhost:"; + getPort() + 
"/protected");
-        Assert.assertEquals("OK-" + TesterSupport.ROLE, res.toString());
-    }
-
     @Override
     public void setUp() throws Exception {
         super.setUp();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to