Index: TestSSLContextBuilder.java =================================================================== --- TestSSLContextBuilder.java (Revision 1749856) +++ TestSSLContextBuilder.java (Arbeitskopie) @@ -577,7 +577,7 @@ final Set supportedServerProtocols = new LinkedHashSet(Arrays.asList(serverSocket.getSupportedProtocols())); Assert.assertTrue(supportedServerProtocols.contains("SSLv3")); serverSocket.setEnabledProtocols(new String[] {"SSLv3"}); - serverSocket.bind(new InetSocketAddress(0)); + serverSocket.bind(new InetSocketAddress("localhost", 0)); this.executorService = Executors.newSingleThreadExecutor(); this.executorService.submit(new Callable() {