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

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


The following commit(s) were added to refs/heads/main by this push:
     new d4c3f29d92 Skip CRL tests if unsupporterd
d4c3f29d92 is described below

commit d4c3f29d92452d37723ff1f070fae13ec3b0f249
Author: Mark Thomas <[email protected]>
AuthorDate: Fri Sep 4 17:21:49 2026 +0100

    Skip CRL tests if unsupporterd
---
 test/org/apache/tomcat/util/net/TestCrlSupport.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/test/org/apache/tomcat/util/net/TestCrlSupport.java 
b/test/org/apache/tomcat/util/net/TestCrlSupport.java
index aee75538af..fd3f9533d2 100644
--- a/test/org/apache/tomcat/util/net/TestCrlSupport.java
+++ b/test/org/apache/tomcat/util/net/TestCrlSupport.java
@@ -25,6 +25,7 @@ import java.util.List;
 import javax.net.ssl.SSLHandshakeException;
 
 import org.junit.Assert;
+import org.junit.Assume;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
@@ -34,6 +35,7 @@ import org.junit.runners.Parameterized.Parameters;
 import org.apache.catalina.startup.Tomcat;
 import org.apache.catalina.startup.TomcatBaseTest;
 import org.apache.tomcat.util.buf.ByteChunk;
+import org.apache.tomcat.util.openssl.openssl_h_Compatibility;
 
 @RunWith(Parameterized.class)
 public class TestCrlSupport extends TomcatBaseTest {
@@ -97,6 +99,7 @@ public class TestCrlSupport extends TomcatBaseTest {
 
     @Test
     public void testCrlClient() throws Exception {
+        Assume.assumeFalse(openssl_h_Compatibility.BORINGSSL || 
openssl_h_Compatibility.isLibreSSLPre35());
         if (clientCertificateIsRevoked) {
             TesterSupport.configureClientSsl(false, 
TesterSupport.CLIENT_CRL_JKS);
         } else {


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

Reply via email to