jdk/test/sun/management/HotspotRuntimeMBean/GetSafepointSyncTime.java
author alexsch
Thu, 31 Jul 2014 14:28:10 +0400
changeset 26019 10a56d28f48d
parent 23010 6dadb192ad81
child 26195 64b54ed39429
permissions -rw-r--r--
8051838: [Findbugs]sun.awt.image.MultiResolutionCachedImage expose internal representation Reviewed-by: serb, pchelko
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 21829
diff changeset
     2
 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug     4858522
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Basic unit test of HotspotRuntimeMBean.getSafepointSyncTime()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author  Steve Bohne
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * This test is just a sanity check and does not check for the correct value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.management.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
public class GetSafepointSyncTime {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    private static HotspotRuntimeMBean mbean =
403
dc6f4ca08b81 6687508: Update test/sun/management jtreg tests due to sun.management.ManagementFactory class rename
mchung
parents: 2
diff changeset
    40
        (HotspotRuntimeMBean)ManagementFactoryHelper.getHotspotRuntimeMBean();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private static final long NUM_THREAD_DUMPS = 300;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    // Careful with these values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    private static final long MIN_VALUE_FOR_PASS = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private static final long MAX_VALUE_FOR_PASS = Long.MAX_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    public static void main(String args[]) throws Exception {
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    49
        long count = mbean.getSafepointCount();
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    50
        long value = mbean.getSafepointSyncTime();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        // Thread.getAllStackTraces() should cause safepoints.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        // If this test is failing because it doesn't,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        // MIN_VALUE_FOR_PASS should be reset to 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        for (int i = 0; i < NUM_THREAD_DUMPS; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            Thread.getAllStackTraces();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    59
        long count1 = mbean.getSafepointCount();
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    60
        long value1 = mbean.getSafepointSyncTime();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    62
        System.out.format("Safepoint count=%d (diff=%d), sync time=%d ms (diff=%d)%n",
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    63
                          count1, count1-count, value1, value1-value);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    65
        if (value1 < MIN_VALUE_FOR_PASS || value1 > MAX_VALUE_FOR_PASS) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            throw new RuntimeException("Safepoint sync time " +
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    67
                                       "illegal value: " + value1 + " ms " +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                                       "(MIN = " + MIN_VALUE_FOR_PASS + "; " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                                       "MAX = " + MAX_VALUE_FOR_PASS + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        for (int i = 0; i < NUM_THREAD_DUMPS; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            Thread.getAllStackTraces();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    76
        long count2 = mbean.getSafepointCount();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        long value2 = mbean.getSafepointSyncTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    79
        System.out.format("Safepoint count=%d (diff=%d), sync time=%d ms (diff=%d)%n",
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    80
                          count2, count2-count1, value2, value2-value1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    82
        if (value2 <= value1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            throw new RuntimeException("Safepoint sync time " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                                       "did not increase " +
21829
a3cac8b5ca51 8028647: Add instrumentation in GetSafepointSyncTime.java and remove it from ProblemList.txt
mchung
parents: 5506
diff changeset
    85
                                       "(value1 = " + value1 + "; " +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                                       "value2 = " + value2 + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        System.out.println("Test passed.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
}