author | stefank |
Fri, 12 Jan 2018 13:56:05 +0100 | |
changeset 48782 | c823eca266c3 |
parent 47216 | 71c04702a3d5 |
child 48791 | 6e079ff6c83c |
permissions | -rw-r--r-- |
15458 | 1 |
/* |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38089
diff
changeset
|
2 |
* Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved. |
15458 | 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 |
* @key nmt jcmd |
|
27 |
* @summary Sanity check the output of NMT |
|
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38089
diff
changeset
|
28 |
* @library /test/lib |
36851 | 29 |
* @modules java.base/jdk.internal.misc |
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
28190
diff
changeset
|
30 |
* java.management |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38089
diff
changeset
|
31 |
* @build sun.hotspot.WhiteBox |
15793
4867678e3517
8006753: fix failed for JDK-8002415 White box testing API for HotSpot
mgerdin
parents:
15458
diff
changeset
|
32 |
* @run main ClassFileInstaller sun.hotspot.WhiteBox |
25958
8dc85547d6d6
8011397: JTREG needs to copy additional WhiteBox class file to JTwork/scratch/sun/hotspot
mgerdin
parents:
15793
diff
changeset
|
33 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
15793
4867678e3517
8006753: fix failed for JDK-8002415 White box testing API for HotSpot
mgerdin
parents:
15458
diff
changeset
|
34 |
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:NativeMemoryTracking=summary -XX:+WhiteBoxAPI SummarySanityCheck |
15458 | 35 |
*/ |
36 |
||
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38089
diff
changeset
|
37 |
import jdk.test.lib.process.ProcessTools; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38089
diff
changeset
|
38 |
import jdk.test.lib.process.OutputAnalyzer; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
38089
diff
changeset
|
39 |
import jdk.test.lib.JDKToolFinder; |
15458 | 40 |
|
41 |
import java.util.regex.Matcher; |
|
42 |
import java.util.regex.Pattern; |
|
43 |
import sun.hotspot.WhiteBox; |
|
44 |
||
45 |
public class SummarySanityCheck { |
|
46 |
||
47 |
private static String jcmdout; |
|
48 |
public static void main(String args[]) throws Exception { |
|
49 |
// Grab my own PID |
|
38089
9e58203ef0e2
8153992: Some hotspot tests fail on compact2 due to an unnecessary test library dependency
akulyakh
parents:
36851
diff
changeset
|
50 |
String pid = Long.toString(ProcessTools.getProcessId()); |
15458 | 51 |
|
52 |
ProcessBuilder pb = new ProcessBuilder(); |
|
53 |
||
54 |
// Run 'jcmd <pid> VM.native_memory summary scale=KB' |
|
55 |
pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "summary", "scale=KB"}); |
|
56 |
OutputAnalyzer output = new OutputAnalyzer(pb.start()); |
|
57 |
||
58 |
jcmdout = output.getOutput(); |
|
59 |
// Split by '-' to get the 'groups' |
|
60 |
String[] lines = jcmdout.split("\n"); |
|
61 |
||
62 |
if (lines.length == 0) { |
|
63 |
throwTestException("Failed to parse jcmd output"); |
|
64 |
} |
|
65 |
||
48782
c823eca266c3
8194925: NMT: SummarySanityCheck test can't parse values > max_jint
stefank
parents:
47216
diff
changeset
|
66 |
long totalCommitted = 0, totalReserved = 0; |
c823eca266c3
8194925: NMT: SummarySanityCheck test can't parse values > max_jint
stefank
parents:
47216
diff
changeset
|
67 |
long totalCommittedSum = 0, totalReservedSum = 0; |
15458 | 68 |
|
69 |
// Match '- <mtType> (reserved=<reserved>KB, committed=<committed>KB) |
|
70 |
Pattern mtTypePattern = Pattern.compile("-\\s+(?<typename>[\\w\\s]+)\\(reserved=(?<reserved>\\d+)KB,\\scommitted=(?<committed>\\d+)KB\\)"); |
|
71 |
// Match 'Total: reserved=<reserved>KB, committed=<committed>KB' |
|
25948
9b33776f4f07
8044140: Create NMT (Native Memory Tracking) tests for NMT2
zgu
parents:
15793
diff
changeset
|
72 |
Pattern totalMemoryPattern = Pattern.compile("Total\\:\\sreserved=(?<reserved>\\d+)KB,\\scommitted=(?<committed>\\d+)KB"); |
15458 | 73 |
|
74 |
for (int i = 0; i < lines.length; i++) { |
|
75 |
if (lines[i].startsWith("Total")) { |
|
76 |
Matcher totalMemoryMatcher = totalMemoryPattern.matcher(lines[i]); |
|
77 |
||
25948
9b33776f4f07
8044140: Create NMT (Native Memory Tracking) tests for NMT2
zgu
parents:
15793
diff
changeset
|
78 |
if (totalMemoryMatcher.matches()) { |
48782
c823eca266c3
8194925: NMT: SummarySanityCheck test can't parse values > max_jint
stefank
parents:
47216
diff
changeset
|
79 |
totalCommitted = Long.parseLong(totalMemoryMatcher.group("committed")); |
c823eca266c3
8194925: NMT: SummarySanityCheck test can't parse values > max_jint
stefank
parents:
47216
diff
changeset
|
80 |
totalReserved = Long.parseLong(totalMemoryMatcher.group("reserved")); |
15458 | 81 |
} else { |
82 |
throwTestException("Failed to match the expected groups in 'Total' memory part"); |
|
83 |
} |
|
84 |
} else if (lines[i].startsWith("-")) { |
|
85 |
Matcher typeMatcher = mtTypePattern.matcher(lines[i]); |
|
86 |
if (typeMatcher.matches()) { |
|
48782
c823eca266c3
8194925: NMT: SummarySanityCheck test can't parse values > max_jint
stefank
parents:
47216
diff
changeset
|
87 |
long typeCommitted = Long.parseLong(typeMatcher.group("committed")); |
c823eca266c3
8194925: NMT: SummarySanityCheck test can't parse values > max_jint
stefank
parents:
47216
diff
changeset
|
88 |
long typeReserved = Long.parseLong(typeMatcher.group("reserved")); |
15458 | 89 |
|
90 |
// Make sure reserved is always less or equals |
|
91 |
if (typeCommitted > typeReserved) { |
|
92 |
throwTestException("Committed (" + typeCommitted + ") was more than Reserved (" |
|
93 |
+ typeReserved + ") for mtType: " + typeMatcher.group("typename")); |
|
94 |
} |
|
95 |
||
96 |
// Add to total and compare them in the end |
|
97 |
totalCommittedSum += typeCommitted; |
|
98 |
totalReservedSum += typeReserved; |
|
99 |
} else { |
|
100 |
throwTestException("Failed to match the group on line " + i); |
|
101 |
} |
|
102 |
} |
|
103 |
} |
|
104 |
||
105 |
// See if they add up correctly, rounding is a problem so make sure we're within +/- 8KB |
|
48782
c823eca266c3
8194925: NMT: SummarySanityCheck test can't parse values > max_jint
stefank
parents:
47216
diff
changeset
|
106 |
long committedDiff = totalCommitted - totalCommittedSum; |
15458 | 107 |
if (committedDiff > 8 || committedDiff < -8) { |
108 |
throwTestException("Total committed (" + totalCommitted + ") did not match the summarized committed (" + totalCommittedSum + ")" ); |
|
109 |
} |
|
110 |
||
48782
c823eca266c3
8194925: NMT: SummarySanityCheck test can't parse values > max_jint
stefank
parents:
47216
diff
changeset
|
111 |
long reservedDiff = totalReserved - totalReservedSum; |
15458 | 112 |
if (reservedDiff > 8 || reservedDiff < -8) { |
113 |
throwTestException("Total reserved (" + totalReserved + ") did not match the summarized reserved (" + totalReservedSum + ")" ); |
|
114 |
} |
|
115 |
} |
|
116 |
||
117 |
private static void throwTestException(String reason) throws Exception { |
|
118 |
throw new Exception(reason + " . Stdout is :\n" + jcmdout); |
|
119 |
} |
|
120 |
} |