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

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


The following commit(s) were added to refs/heads/10.1.x by this push:
     new 1cad056ea2 Support running unit tests with OpenSSL master (3.5.x)
1cad056ea2 is described below

commit 1cad056ea27ccd33bc6df1951869643d8f5df917
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Dec 5 20:24:27 2024 +0000

    Support running unit tests with OpenSSL master (3.5.x)
---
 test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java 
b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java
index 28a2582d70..cfa62ec6bc 100644
--- a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java
+++ b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java
@@ -49,8 +49,10 @@ public class TesterOpenSSL {
         } catch (IOException e) {
             versionString = "";
         }
-        if (versionString.startsWith("OpenSSL 3.4.")) {
+        if (versionString.startsWith("OpenSSL 3.5.")) {
             // Note: Gump currently tests 11.x with OpenSSL HEAD which is 
current 3.4.x
+            VERSION = 30500;
+        } else if (versionString.startsWith("OpenSSL 3.4.")) {
             VERSION = 30400;
         } else if (versionString.startsWith("OpenSSL 3.3.")) {
             VERSION = 30300;


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to