This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 9542fad76165f0fb0fdd8fb94e0287be6976d16b Author: Mark Thomas <ma...@apache.org> AuthorDate: Wed Jan 3 19:35:48 2024 +0000 It is only client initiated renegotiation that has been disabled --- test/org/apache/tomcat/util/net/TestClientCert.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/org/apache/tomcat/util/net/TestClientCert.java b/test/org/apache/tomcat/util/net/TestClientCert.java index 89a42ceb5e..bbd6e1b90a 100644 --- a/test/org/apache/tomcat/util/net/TestClientCert.java +++ b/test/org/apache/tomcat/util/net/TestClientCert.java @@ -19,7 +19,6 @@ package org.apache.tomcat.util.net; import java.util.Arrays; import org.junit.Assert; -import org.junit.Assume; import org.junit.Test; import org.apache.catalina.Context; @@ -45,9 +44,6 @@ public class TestClientCert extends TomcatBaseTest { } private void doTestClientCertGet(boolean preemptive) throws Exception { - Assume.assumeTrue("SSL renegotiation has to be supported for this test", - TesterSupport.isRenegotiationSupported(getTomcatInstance())); - if (preemptive) { Tomcat tomcat = getTomcatInstance(); // Only one context deployed @@ -127,9 +123,6 @@ public class TestClientCert extends TomcatBaseTest { private void doTestClientCertPost(int bodySize, boolean expectProtectedFail) throws Exception { - Assume.assumeTrue("SSL renegotiation has to be supported for this test", - TesterSupport.isRenegotiationSupported(getTomcatInstance())); - Tomcat tomcat = getTomcatInstance(); tomcat.start(); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org