# HG changeset patch # User vinnie # Date 1436216269 -3600 # Node ID c029922f00069129b2bc2e0d5f370e814876125d # Parent d109922ed5ac5871f6dfb3001f963791a99ed8c2 8078348: sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java fails with BindException Reviewed-by: xuelei diff -r d109922ed5ac -r c029922f0006 test/sun/security/pkcs11/sslecc/CipherTest.java --- a/test/sun/security/pkcs11/sslecc/CipherTest.java Mon Jul 06 21:56:19 2015 +0100 +++ b/test/sun/security/pkcs11/sslecc/CipherTest.java Mon Jul 06 21:57:49 2015 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -45,7 +45,7 @@ public class CipherTest { // use any available port for the server socket - static int serverPort = 0; + static volatile int serverPort = 0; final int THREADS; diff -r d109922ed5ac -r c029922f0006 test/sun/security/pkcs11/sslecc/JSSEServer.java --- a/test/sun/security/pkcs11/sslecc/JSSEServer.java Mon Jul 06 21:56:19 2015 +0100 +++ b/test/sun/security/pkcs11/sslecc/JSSEServer.java Mon Jul 06 21:57:49 2015 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2006, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -42,7 +42,7 @@ serverContext.init(new KeyManager[] {cipherTest.keyManager}, new TrustManager[] {cipherTest.trustManager}, cipherTest.secureRandom); SSLServerSocketFactory factory = (SSLServerSocketFactory)serverContext.getServerSocketFactory(); - serverSocket = (SSLServerSocket)factory.createServerSocket(cipherTest.serverPort); + serverSocket = (SSLServerSocket)factory.createServerSocket(0); cipherTest.serverPort = serverSocket.getLocalPort(); serverSocket.setEnabledCipherSuites(factory.getSupportedCipherSuites()); serverSocket.setWantClientAuth(true);