author | goetz |
Fri, 20 Jul 2018 09:46:57 +0200 | |
changeset 51214 | 67736b4846a0 |
parent 50791 | b1e90a8a876c |
permissions | -rw-r--r-- |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
1 |
/* |
50791
b1e90a8a876c
8205419: [testbug] TestJmapCore failing without SA: introduce @requires vm.hasSAandCanAttach
goetz
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
4 |
* |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
8 |
* |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
13 |
* accompanied this code). |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
14 |
* |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
18 |
* |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
21 |
* questions. |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
22 |
*/ |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
23 |
|
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
24 |
import java.util.ArrayList; |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
25 |
import java.util.List; |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
26 |
|
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
27 |
import sun.jvm.hotspot.HotSpotAgent; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
28 |
import sun.jvm.hotspot.utilities.SystemDictionaryHelper; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
29 |
import sun.jvm.hotspot.oops.InstanceKlass; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
30 |
import sun.jvm.hotspot.debugger.*; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
31 |
|
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
32 |
import jdk.test.lib.apps.LingeredApp; |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
33 |
import jdk.test.lib.JDKToolLauncher; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
34 |
import jdk.test.lib.JDKToolFinder; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
35 |
import jdk.test.lib.Platform; |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40244
diff
changeset
|
36 |
import jdk.test.lib.process.ProcessTools; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40244
diff
changeset
|
37 |
import jdk.test.lib.process.OutputAnalyzer; |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
38 |
import jdk.test.lib.Utils; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
39 |
import jdk.test.lib.Asserts; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
40 |
|
50791
b1e90a8a876c
8205419: [testbug] TestJmapCore failing without SA: introduce @requires vm.hasSAandCanAttach
goetz
parents:
47216
diff
changeset
|
41 |
/** |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
42 |
* @test |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40244
diff
changeset
|
43 |
* @library /test/lib |
50791
b1e90a8a876c
8205419: [testbug] TestJmapCore failing without SA: introduce @requires vm.hasSAandCanAttach
goetz
parents:
47216
diff
changeset
|
44 |
* @requires vm.hasSAandCanAttach |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
45 |
* @modules java.base/jdk.internal.misc |
42573
a20695c30be5
8169638: serviceability/sa/TestInstanceKlassSize.java and serviceability/sa/TestInstanceKlassSizeForInterface.java fail compilation
dsamersoff
parents:
42075
diff
changeset
|
46 |
* jdk.hotspot.agent/sun.jvm.hotspot |
a20695c30be5
8169638: serviceability/sa/TestInstanceKlassSize.java and serviceability/sa/TestInstanceKlassSizeForInterface.java fail compilation
dsamersoff
parents:
42075
diff
changeset
|
47 |
* jdk.hotspot.agent/sun.jvm.hotspot.utilities |
a20695c30be5
8169638: serviceability/sa/TestInstanceKlassSize.java and serviceability/sa/TestInstanceKlassSizeForInterface.java fail compilation
dsamersoff
parents:
42075
diff
changeset
|
48 |
* jdk.hotspot.agent/sun.jvm.hotspot.oops |
a20695c30be5
8169638: serviceability/sa/TestInstanceKlassSize.java and serviceability/sa/TestInstanceKlassSizeForInterface.java fail compilation
dsamersoff
parents:
42075
diff
changeset
|
49 |
* jdk.hotspot.agent/sun.jvm.hotspot.debugger |
a20695c30be5
8169638: serviceability/sa/TestInstanceKlassSize.java and serviceability/sa/TestInstanceKlassSizeForInterface.java fail compilation
dsamersoff
parents:
42075
diff
changeset
|
50 |
* @run main/othervm TestInstanceKlassSizeForInterface |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
51 |
*/ |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
52 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
53 |
public class TestInstanceKlassSizeForInterface { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
54 |
|
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
55 |
private static LingeredAppWithInterface theApp = null; |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
56 |
|
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
57 |
private static void SAInstanceKlassSize(int lingeredAppPid, |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
58 |
String[] instanceKlassNames) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
59 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
60 |
HotSpotAgent agent = new HotSpotAgent(); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
61 |
try { |
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
62 |
agent.attach(lingeredAppPid); |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
63 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
64 |
catch (DebuggerException e) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
65 |
System.out.println(e.getMessage()); |
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
66 |
System.err.println("Unable to connect to process ID: " + lingeredAppPid); |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
67 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
68 |
agent.detach(); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
69 |
e.printStackTrace(); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
70 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
71 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
72 |
for (String instanceKlassName : instanceKlassNames) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
73 |
InstanceKlass iKlass = SystemDictionaryHelper.findInstanceKlass( |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
74 |
instanceKlassName); |
40889
adf083cbc37f
8164562: serviceability/sa/TestInstanceKlassSizeForInterface.java: fails with NPE
dsamersoff
parents:
40631
diff
changeset
|
75 |
Asserts.assertNotNull(iKlass, |
adf083cbc37f
8164562: serviceability/sa/TestInstanceKlassSizeForInterface.java: fails with NPE
dsamersoff
parents:
40631
diff
changeset
|
76 |
String.format("Unable to find instance klass for %s", instanceKlassName)); |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
77 |
System.out.println("SA: The size of " + instanceKlassName + |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
78 |
" is " + iKlass.getSize()); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
79 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
80 |
agent.detach(); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
81 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
82 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
83 |
private static String getJcmdInstanceKlassSize(OutputAnalyzer output, |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
84 |
String instanceKlassName) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
85 |
for (String s : output.asLines()) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
86 |
if (s.contains(instanceKlassName)) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
87 |
String tokens[]; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
88 |
System.out.println(s); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
89 |
tokens = s.split("\\s+"); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
90 |
return tokens[3]; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
91 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
92 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
93 |
return null; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
94 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
95 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
96 |
private static void createAnotherToAttach( |
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
97 |
String[] instanceKlassNames, |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
98 |
int lingeredAppPid) throws Exception { |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
99 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
100 |
String[] toolArgs = { |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
39999
diff
changeset
|
101 |
"--add-modules=jdk.hotspot.agent", |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
39999
diff
changeset
|
102 |
"--add-exports=jdk.hotspot.agent/sun.jvm.hotspot=ALL-UNNAMED", |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
39999
diff
changeset
|
103 |
"--add-exports=jdk.hotspot.agent/sun.jvm.hotspot.utilities=ALL-UNNAMED", |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
39999
diff
changeset
|
104 |
"--add-exports=jdk.hotspot.agent/sun.jvm.hotspot.oops=ALL-UNNAMED", |
40889
adf083cbc37f
8164562: serviceability/sa/TestInstanceKlassSizeForInterface.java: fails with NPE
dsamersoff
parents:
40631
diff
changeset
|
105 |
"--add-exports=jdk.hotspot.agent/sun.jvm.hotspot.debugger=ALL-UNNAMED", |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
106 |
"TestInstanceKlassSizeForInterface", |
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
107 |
Integer.toString(lingeredAppPid) |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
108 |
}; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
109 |
|
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
110 |
// Start a new process to attach to the LingeredApp process |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
111 |
ProcessBuilder processBuilder = ProcessTools |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
112 |
.createJavaProcessBuilder(toolArgs); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
113 |
OutputAnalyzer SAOutput = ProcessTools.executeProcess(processBuilder); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
114 |
SAOutput.shouldHaveExitValue(0); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
115 |
System.out.println(SAOutput.getOutput()); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
116 |
|
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
117 |
// Run jcmd on the LingeredApp process |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
118 |
ProcessBuilder pb = new ProcessBuilder(); |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
119 |
pb.command(new String[] { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
120 |
JDKToolFinder.getJDKTool("jcmd"), |
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
121 |
Long.toString(lingeredAppPid), |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
122 |
"GC.class_stats", |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
123 |
"VTab,ITab,OopMap,KlassBytes" |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
124 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
125 |
); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
126 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
127 |
OutputAnalyzer jcmdOutput = new OutputAnalyzer(pb.start()); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
128 |
System.out.println(jcmdOutput.getOutput()); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
129 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
130 |
// Match the sizes from both the output streams |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
131 |
for (String instanceKlassName : instanceKlassNames) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
132 |
System.out.println ("Trying to match for " + instanceKlassName); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
133 |
String jcmdInstanceKlassSize = getJcmdInstanceKlassSize( |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
134 |
jcmdOutput, |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
135 |
instanceKlassName); |
40889
adf083cbc37f
8164562: serviceability/sa/TestInstanceKlassSizeForInterface.java: fails with NPE
dsamersoff
parents:
40631
diff
changeset
|
136 |
Asserts.assertNotNull(jcmdInstanceKlassSize, |
adf083cbc37f
8164562: serviceability/sa/TestInstanceKlassSizeForInterface.java: fails with NPE
dsamersoff
parents:
40631
diff
changeset
|
137 |
"Could not get the instance klass size from the jcmd output"); |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
138 |
for (String s : SAOutput.asLines()) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
139 |
if (s.contains(instanceKlassName)) { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
140 |
Asserts.assertTrue( |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
141 |
s.contains(jcmdInstanceKlassSize), |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
142 |
"The size computed by SA for " + |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
143 |
instanceKlassName + " does not match."); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
144 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
145 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
146 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
147 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
148 |
|
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
149 |
public static void main (String... args) throws Exception { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
150 |
String[] instanceKlassNames = new String[] { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
151 |
"Language", |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
152 |
"ParselTongue", |
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
153 |
"LingeredAppWithInterface$1" |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
154 |
}; |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
155 |
|
40889
adf083cbc37f
8164562: serviceability/sa/TestInstanceKlassSizeForInterface.java: fails with NPE
dsamersoff
parents:
40631
diff
changeset
|
156 |
if (args == null || args.length == 0) { |
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
157 |
try { |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
158 |
List<String> vmArgs = new ArrayList<String>(); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
159 |
vmArgs.addAll(Utils.getVmOptions()); |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
160 |
|
43979
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
161 |
theApp = new LingeredAppWithInterface(); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
162 |
LingeredApp.startApp(vmArgs, theApp); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
163 |
createAnotherToAttach(instanceKlassNames, |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
164 |
(int)theApp.getPid()); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
165 |
} finally { |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
166 |
LingeredApp.stopApp(theApp); |
4597fa06b227
8162504: TestInstanceKlassSize.java and TestInstanceKlassSizeForInterface.java fail on Mac OS
jgeorge
parents:
42646
diff
changeset
|
167 |
} |
39999
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
168 |
} else { |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
169 |
SAInstanceKlassSize(Integer.parseInt(args[0]), instanceKlassNames); |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
170 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
171 |
} |
82ece130a37b
8145627: sun.jvm.hotspot.oops.InstanceKlass::getSize() returns the incorrect size and has no test
sspitsyn
parents:
diff
changeset
|
172 |
} |