--- old/test/jdk/javax/net/ssl/ServerName/SSLSocketExplorerFailure.java 2018-05-11 15:07:17.059817600 -0700 +++ new/test/jdk/javax/net/ssl/ServerName/SSLSocketExplorerFailure.java 2018-05-11 15:07:16.570357300 -0700 @@ -45,6 +45,7 @@ import java.util.*; import java.net.*; import javax.net.ssl.*; +import java.security.Security; public class SSLSocketExplorerFailure { @@ -232,6 +233,9 @@ volatile Exception clientException = null; public static void main(String[] args) throws Exception { + Security.setProperty("jdk.tls.disabledAlgorithms", ""); + Security.setProperty("jdk.certpath.disabledAlgorithms", ""); + String keyFilename = System.getProperty("test.src", ".") + "/" + pathToStores + "/" + keyStoreFile;