author | shade |
Thu, 02 Oct 2014 17:13:31 +0400 | |
changeset 27003 | 19617f4c9dd0 |
parent 26149 | dd15a4c3746b |
child 27169 | 59d46464ef22 |
permissions | -rw-r--r-- |
15458 | 1 |
/* |
25948
9b33776f4f07
8044140: Create NMT (Native Memory Tracking) tests for NMT2
zgu
parents:
22193
diff
changeset
|
2 |
* Copyright (c) 2013, 2014, 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 regression |
|
27 |
* @bug 8005936 |
|
28 |
* @summary Make sure PrintNMTStatistics works on normal JVM exit |
|
15793
4867678e3517
8006753: fix failed for JDK-8002415 White box testing API for HotSpot
mgerdin
parents:
15458
diff
changeset
|
29 |
* @library /testlibrary /testlibrary/whitebox |
16440
70418233642e
8008454: test/runtime/NMT/PrintNMTStatistics is broken
ctornqvi
parents:
15793
diff
changeset
|
30 |
* @build PrintNMTStatistics |
70418233642e
8008454: test/runtime/NMT/PrintNMTStatistics is broken
ctornqvi
parents:
15793
diff
changeset
|
31 |
* @run main ClassFileInstaller sun.hotspot.WhiteBox |
25958
8dc85547d6d6
8011397: JTREG needs to copy additional WhiteBox class file to JTwork/scratch/sun/hotspot
mgerdin
parents:
22193
diff
changeset
|
32 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
16440
70418233642e
8008454: test/runtime/NMT/PrintNMTStatistics is broken
ctornqvi
parents:
15793
diff
changeset
|
33 |
* @run main PrintNMTStatistics |
15458 | 34 |
*/ |
35 |
||
36 |
import com.oracle.java.testlibrary.*; |
|
37 |
||
38 |
import java.util.regex.Matcher; |
|
39 |
import java.util.regex.Pattern; |
|
40 |
import sun.hotspot.WhiteBox; |
|
41 |
||
42 |
public class PrintNMTStatistics { |
|
43 |
||
44 |
public static void main(String args[]) throws Exception { |
|
45 |
||
46 |
// We start a new java process running with an argument and use WB API to ensure |
|
47 |
// we have data for NMT on VM exit |
|
48 |
if (args.length > 0) { |
|
49 |
return; |
|
50 |
} |
|
51 |
||
52 |
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( |
|
53 |
"-XX:+UnlockDiagnosticVMOptions", |
|
16440
70418233642e
8008454: test/runtime/NMT/PrintNMTStatistics is broken
ctornqvi
parents:
15793
diff
changeset
|
54 |
"-Xbootclasspath/a:.", |
70418233642e
8008454: test/runtime/NMT/PrintNMTStatistics is broken
ctornqvi
parents:
15793
diff
changeset
|
55 |
"-XX:+WhiteBoxAPI", |
15458 | 56 |
"-XX:NativeMemoryTracking=summary", |
16440
70418233642e
8008454: test/runtime/NMT/PrintNMTStatistics is broken
ctornqvi
parents:
15793
diff
changeset
|
57 |
"-XX:+PrintNMTStatistics", |
15458 | 58 |
"PrintNMTStatistics", |
59 |
"test"); |
|
60 |
||
61 |
OutputAnalyzer output = new OutputAnalyzer(pb.start()); |
|
16440
70418233642e
8008454: test/runtime/NMT/PrintNMTStatistics is broken
ctornqvi
parents:
15793
diff
changeset
|
62 |
output.shouldContain("Java Heap (reserved="); |
15458 | 63 |
output.shouldNotContain("error"); |
64 |
output.shouldHaveExitValue(0); |
|
65 |
} |
|
66 |
} |