This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 4ca3cde0cb5718085dc23be63b7c4d33d07f989b Author: Mark Thomas <[email protected]> AuthorDate: Wed Dec 10 11:46:23 2025 +0000 Disable failing test --- test/org/apache/tomcat/security/TestSecurity2017.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/org/apache/tomcat/security/TestSecurity2017.java b/test/org/apache/tomcat/security/TestSecurity2017.java index c3fcfc088c..1daf51b177 100644 --- a/test/org/apache/tomcat/security/TestSecurity2017.java +++ b/test/org/apache/tomcat/security/TestSecurity2017.java @@ -20,6 +20,7 @@ package org.apache.tomcat.security; import javax.net.ssl.SSLHandshakeException; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import org.apache.catalina.startup.TomcatBaseTest; @@ -31,8 +32,15 @@ public class TestSecurity2017 extends TomcatBaseTest { * * Fixed in Tomcat Native * 1.2.16 https://github.com/apache/tomcat-native/commit/4582e6d9223da618b42db6e992bb2d55d9cd4c42 + * + * Changes currently in Tomcat Native 2.0.x expand the OCSP checks to include the date the OCSP response was + * generated. This causes this test to fail as the OCSP responder uses canned responses. + * + * A new version of this test has been written and will replace this test once a version of Tomcat Native is + * released that includes all the OCSP changes. */ @Test + @Ignore public void testCVE_2017_15698() throws Exception { try { TestOcspIntegration.testLongUrlForOcspViaAIAWithTomcatNative(getTomcatInstance()); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
