Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/management/HotspotClassLoadingMBean/GetClassInitializationTime.java
38840 views
1
/*
2
* Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
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
*
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
* @test
26
* @bug 4858522
27
* @summary Basic unit test of HotspotClassLoadingMBean.getClassInitializationTime()
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 GetClassInitializationTime {
38
39
private static HotspotClassLoadingMBean mbean =
40
(HotspotClassLoadingMBean)ManagementFactoryHelper.getHotspotClassLoadingMBean();
41
42
// Careful with these values.
43
private static final long MIN_TIME_FOR_PASS = 1;
44
private static final long MAX_TIME_FOR_PASS = Long.MAX_VALUE;
45
46
private static boolean trace = false;
47
48
public static void main(String args[]) throws Exception {
49
if (args.length > 0 && args[0].equals("trace")) {
50
trace = true;
51
}
52
53
long time = mbean.getClassInitializationTime();
54
55
if (trace) {
56
System.out.println("Class initialization time (ms): " + time);
57
}
58
59
if (time < MIN_TIME_FOR_PASS || time > MAX_TIME_FOR_PASS) {
60
throw new RuntimeException("Class initialization time " +
61
"illegal value: " + time + " ms " +
62
"(MIN = " + MIN_TIME_FOR_PASS + "; " +
63
"MAX = " + MAX_TIME_FOR_PASS + ")");
64
}
65
66
// Load a class and make sure the time increases
67
Class.forName("ClassToInitialize");
68
69
long time2 = mbean.getClassInitializationTime();
70
71
if (trace) {
72
System.out.println("Class initialization time2 (ms): " + time2);
73
}
74
75
if (time2 <= time) {
76
throw new RuntimeException("Class initialization time " +
77
"did not increase when class loaded " +
78
"(time = " + time + "; " +
79
"time2 = " + time2 + ")");
80
}
81
82
System.out.println("Test passed.");
83
}
84
}
85
86
// This class should just cause the initialization timer to run
87
class ClassToInitialize {
88
static {
89
try {
90
Thread.sleep(1000);
91
} catch (InterruptedException ie) {
92
// do nothing
93
}
94
}
95
}
96
97