< prev index next >

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

Print this page
rev 51638 : [mq]: 8210112


  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  * A JVM with JDP off should not send multicast JDP packets at all.
  26  * com.sun.management.jmxremote.autodiscovery=false should be respected.
  27  *
  28  * @author Alex Schenkman
  29  */
  30 
  31 /*
  32  * @test JdpOffTest.java
  33  * @summary Assert that no JDP packets are sent to the default address and port.
  34  *
  35  * @library /lib/testlibrary

  36  *
  37  * @build jdk.testlibrary.* ClientConnection JdpTestUtil JdpTestCase JdpOffTestCase DynamicLauncher
  38  * @run main/othervm JdpOffTest
  39  */
  40 
  41 
  42 public class JdpOffTest extends DynamicLauncher {
  43 
  44     final String testName = "JdpOffTestCase";
  45 
  46     public static void main(String[] args) throws Exception {
  47         DynamicLauncher launcher = new JdpOffTest();
  48         launcher.run();
  49     }
  50 
  51     /**
  52      * Send Jdp multicast packets to the specified IP and port, 224.0.1.2:1234
  53      */
  54     protected String[] options() {
  55         String[] options = {


  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  * A JVM with JDP off should not send multicast JDP packets at all.
  26  * com.sun.management.jmxremote.autodiscovery=false should be respected.
  27  *
  28  * @author Alex Schenkman
  29  */
  30 
  31 /*
  32  * @test JdpOffTest.java
  33  * @summary Assert that no JDP packets are sent to the default address and port.
  34  *
  35  * @library /lib/testlibrary
  36  * @library /test/lib
  37  *
  38  * @build jdk.testlibrary.* ClientConnection JdpTestUtil JdpTestCase JdpOffTestCase DynamicLauncher
  39  * @run main/othervm JdpOffTest
  40  */
  41 
  42 
  43 public class JdpOffTest extends DynamicLauncher {
  44 
  45     final String testName = "JdpOffTestCase";
  46 
  47     public static void main(String[] args) throws Exception {
  48         DynamicLauncher launcher = new JdpOffTest();
  49         launcher.run();
  50     }
  51 
  52     /**
  53      * Send Jdp multicast packets to the specified IP and port, 224.0.1.2:1234
  54      */
  55     protected String[] options() {
  56         String[] options = {
< prev index next >