--- old/test/jdk/javax/net/ssl/SSLSession/TestEnabledProtocols.java 2018-05-11 15:07:15.536731100 -0700 +++ new/test/jdk/javax/net/ssl/SSLSession/TestEnabledProtocols.java 2018-05-11 15:07:15.061500500 -0700 @@ -234,6 +234,10 @@ } catch (java.lang.InterruptedException ie) { // must have been interrupted, no harm break; + } catch (SSLException ssle) { + // The client side may have closed the socket. + System.out.println("Server SSLException:"); + ssle.printStackTrace(System.out); } catch (Exception e) { System.out.println("Server exception:"); e.printStackTrace(System.out);