This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new d7ae6515dc Fix Gump issue - Gump tests with OpenSSL master which is
now 3.4.x
d7ae6515dc is described below
commit d7ae6515dcd82aa72f3bd05200dd32717454a286
Author: Mark Thomas <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]