author | alexsch |
Thu, 31 Jul 2014 14:28:10 +0400 | |
changeset 26019 | 10a56d28f48d |
parent 23010 | 6dadb192ad81 |
child 26195 | 64b54ed39429 |
permissions | -rw-r--r-- |
2 | 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 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
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 |
* |
|
5506 | 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. |
|
2 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 4858522 |
|
27 |
* @summary Basic unit test of HotspotRuntimeMBean.getSafepointSyncTime() |
|
28 |
* @author Steve Bohne |
|
29 |
*/ |
|
30 |
||
31 |
/* |
|
32 |
* This test is just a sanity check and does not check for the correct value. |
|
33 |
*/ |
|
34 |
||
35 |
import sun.management.*; |
|
36 |
||
37 |
public class GetSafepointSyncTime { |
|
38 |
||
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 | 41 |
|
42 |
private static final long NUM_THREAD_DUMPS = 300; |
|
43 |
||
44 |
// Careful with these values. |
|
45 |
private static final long MIN_VALUE_FOR_PASS = 1; |
|
46 |
private static final long MAX_VALUE_FOR_PASS = Long.MAX_VALUE; |
|
47 |
||
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 | 51 |
|
52 |
// Thread.getAllStackTraces() should cause safepoints. |
|
53 |
// If this test is failing because it doesn't, |
|
54 |
// MIN_VALUE_FOR_PASS should be reset to 0 |
|
55 |
for (int i = 0; i < NUM_THREAD_DUMPS; i++) { |
|
56 |
Thread.getAllStackTraces(); |
|
57 |
} |
|
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 | 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 | 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 | 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 | 68 |
"(MIN = " + MIN_VALUE_FOR_PASS + "; " + |
69 |
"MAX = " + MAX_VALUE_FOR_PASS + ")"); |
|
70 |
} |
|
71 |
||
72 |
for (int i = 0; i < NUM_THREAD_DUMPS; i++) { |
|
73 |
Thread.getAllStackTraces(); |
|
74 |
} |
|
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 | 77 |
long value2 = mbean.getSafepointSyncTime(); |
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 | 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 | 83 |
throw new RuntimeException("Safepoint sync time " + |
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 | 86 |
"value2 = " + value2 + ")"); |
87 |
} |
|
88 |
||
89 |
System.out.println("Test passed."); |
|
90 |
} |
|
91 |
} |