This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new fbc6e5bdbb Fix test fbc6e5bdbb is described below commit fbc6e5bdbb5769fa3cc813e08ccb654868f4db50 Author: remm <r...@apache.org> AuthorDate: Tue Feb 27 15:14:45 2024 +0100 Fix test As posted by Rainer Jung --- test/org/apache/tomcat/util/net/TesterSupport.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/org/apache/tomcat/util/net/TesterSupport.java b/test/org/apache/tomcat/util/net/TesterSupport.java index 568ea1ece8..873310f7c2 100644 --- a/test/org/apache/tomcat/util/net/TesterSupport.java +++ b/test/org/apache/tomcat/util/net/TesterSupport.java @@ -64,6 +64,7 @@ import org.apache.tomcat.util.descriptor.web.LoginConfig; import org.apache.tomcat.util.descriptor.web.SecurityCollection; import org.apache.tomcat.util.descriptor.web.SecurityConstraint; import org.apache.tomcat.util.net.SSLHostConfigCertificate.Type; +import org.apache.tomcat.util.net.jsse.JSSEImplementation; public final class TesterSupport { @@ -236,7 +237,8 @@ public final class TesterSupport { } String sslImplementation = System.getProperty("tomcat.test.sslImplementation"); - if (sslImplementation != null && !"${test.sslImplementation}".equals(sslImplementation)) { + if (sslImplementation != null && !"${test.sslImplementation}".equals(sslImplementation) + && !JSSEImplementation.class.getName().equals(sslImplementation)) { // Assume custom SSL is not supporting this return false; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org