jdk/test/sun/tools/jstatd/TestJstatdPort.java
author sla
Mon, 07 Apr 2014 08:09:55 +0200
changeset 23723 46b29c0e9656
parent 21410 5f3e83a059c4
child 24509 5d02a6d25f78
permissions -rw-r--r--
8039256: Add sun/jvmstat/monitor/MonitoredVm/CR6672135.java to ProblemList.txt Reviewed-by: mgronlun, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21410
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     1
/*
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     4
 *
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     7
 * published by the Free Software Foundation.
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     8
 *
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    13
 * accompanied this code).
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    14
 *
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    18
 *
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    21
 * questions.
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    22
 */
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    23
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    24
/*
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    25
 * @test
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    26
 * @bug 4990825
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    27
 * @library /lib/testlibrary
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    28
 * @build JstatdTest JstatGCUtilParser
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    29
 * @run main/timeout=60 TestJstatdPort
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    30
 */
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    31
public class TestJstatdPort {
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    32
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    33
    public static void main(String[] args) throws Throwable {
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    34
        JstatdTest test = new JstatdTest();
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    35
        test.setUseDefaultPort(false);
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    36
        test.doTest();
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    37
    }
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    38
5f3e83a059c4 8022229: Intermittent test failures in sun/tools/jstatd
ykantser
parents:
diff changeset
    39
}