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 19f92185d0 Fix tests if OpenSSL is not present
19f92185d0 is described below
commit 19f92185d0455612573cadfd0caf3d1287012a6f
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Jun 24 17:37:44 2024 +0100
Fix tests if OpenSSL is not present
---
test/org/apache/tomcat/util/net/TesterSupport.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/org/apache/tomcat/util/net/TesterSupport.java
b/test/org/apache/tomcat/util/net/TesterSupport.java
index d663bfe40c..868d99df2d 100644
--- a/test/org/apache/tomcat/util/net/TesterSupport.java
+++ b/test/org/apache/tomcat/util/net/TesterSupport.java
@@ -116,7 +116,7 @@ public final class TesterSupport {
version = SSL.version();
Library.terminate();
}
- } catch (Exception | LibraryNotFoundError ex) {
+ } catch (Exception | LibraryNotFoundError |
ExceptionInInitializerError ex) {
err = ex.getMessage();
}
OPENSSL_AVAILABLE = available;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]