< prev index next >

test/jdk/sun/management/jdp/PortAlreadyInUseTest.java

Print this page
rev 51731 : imported patch 8210732


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 
  25 import jdk.test.lib.process.OutputAnalyzer;
  26 import jdk.testlibrary.Utils;
  27 
  28 import java.io.IOException;
  29 import java.net.ServerSocket;
  30 import java.util.logging.Logger;
  31 
  32 /**
  33  * This test used for test development and it is not meant to be run by JTReg.
  34  * <p/>
  35  * This test exercises a retry mechanism to avoid a test failure because of
  36  * starting the VM on a busy jmxremote.port.
  37  * <p/>
  38  * To run this test you'll need to add this VM option: -Dtest.jdk=<path-to-jdk>
  39  */
  40 public class PortAlreadyInUseTest extends DynamicLauncher {
  41 
  42     ServerSocket socket;
  43     final Logger log = Logger.getLogger("PortAlreadyInUse");
  44 
  45     protected void go() throws Exception {
  46         jmxPort = Utils.getFreePort();




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 
  25 import jdk.test.lib.process.OutputAnalyzer;
  26 import jdk.test.lib.Utils;
  27 
  28 import java.io.IOException;
  29 import java.net.ServerSocket;
  30 import java.util.logging.Logger;
  31 
  32 /**
  33  * This test used for test development and it is not meant to be run by JTReg.
  34  * <p/>
  35  * This test exercises a retry mechanism to avoid a test failure because of
  36  * starting the VM on a busy jmxremote.port.
  37  * <p/>
  38  * To run this test you'll need to add this VM option: -Dtest.jdk=<path-to-jdk>
  39  */
  40 public class PortAlreadyInUseTest extends DynamicLauncher {
  41 
  42     ServerSocket socket;
  43     final Logger log = Logger.getLogger("PortAlreadyInUse");
  44 
  45     protected void go() throws Exception {
  46         jmxPort = Utils.getFreePort();


< prev index next >