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


The following commit(s) were added to refs/heads/main by this push:
     new 973881f808 Fix Gump issue - Gump tests with OpenSSL master which is 
now 3.4.x
973881f808 is described below

commit 973881f8083c5f7064ce61441640bd2069de65c5
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue Apr 16 14:46:41 2024 +0100

    Fix Gump issue - Gump tests with OpenSSL master which is now 3.4.x
---
 test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

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 6f51c27f8a..28a2582d70 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.3.")) {
-            // Note: Gump currently tests 11.x with OpenSSL 3.3.x
+        if (versionString.startsWith("OpenSSL 3.4.")) {
+            // Note: Gump currently tests 11.x with OpenSSL HEAD which is 
current 3.4.x
+            VERSION = 30400;
+        } else if (versionString.startsWith("OpenSSL 3.3.")) {
             VERSION = 30300;
         } else if (versionString.startsWith("OpenSSL 3.2.")) {
             VERSION = 30200;


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

Reply via email to