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 74ac9351a5 Support running unit tests with OpenSSL master (3.5.x)
74ac9351a5 is described below
commit 74ac9351a56c582cfdaffdaa96b78d99ea5fbcc5
Author: Mark Thomas <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]