-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
None
The fix for the other tests is similar like the fix for TrustTrustedCert.java in
- } catch (SSLException ssle) {
+ } catch (SSLException | SocketException se) {
if (!expectFail) {
- throw ssle;
+ throw se;
} // Otherwise, ignore.
}
- relates to
-
JDK-8259662 Don't wrap SocketExceptions into SSLExceptions in SSLSocketImpl
- Resolved
-
JDK-8259582 Backout JDK-8237578 until all affected tests have been fixed
- Closed
-
JDK-8262436 SSL test failures caused by java.net.SocketException
- Closed
- links to
-
Review openjdk/jdk/2029