annotate test/runtime/NMT/MallocSiteHashOverflow.java @ 20401:3f9ff5e261c6

8055765: Misplaced @key stress prevents MallocSiteHashOverflow.java and MallocStressTest.java tests from running Reviewed-by: ctornqvi, zgu, hseigel
author gtriantafill
date Fri, 22 Aug 2014 06:28:14 -0700
parents 017b0145f20c
children 80260967f994
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
1 /*
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
4 *
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
7 * published by the Free Software Foundation.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
8 *
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
13 * accompanied this code).
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
14 *
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
18 *
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
21 * questions.
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
22 */
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
23
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
24 /*
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
25 * @test
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
26 * @summary Test corner case that overflows malloc site hashtable bucket
20401
3f9ff5e261c6 8055765: Misplaced @key stress prevents MallocSiteHashOverflow.java and MallocStressTest.java tests from running
gtriantafill
parents: 20394
diff changeset
27 * @key nmt jcmd stress
20394
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
28 * @library /testlibrary /testlibrary/whitebox
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
29 * @ignore - This test is disabled since it will stress NMT and timeout during normal testing
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
30 * @build MallocSiteHashOverflow
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
31 * @run main ClassFileInstaller sun.hotspot.WhiteBox
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
32 * @run main/othervm/timeout=480 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:NativeMemoryTracking=detail MallocSiteHashOverflow
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
33 */
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
34
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
35 import com.oracle.java.testlibrary.*;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
36 import sun.hotspot.WhiteBox;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
37
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
38 public class MallocSiteHashOverflow {
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
39 private static long K = 1024;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
40 public static void main(String args[]) throws Exception {
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
41 String vm_name = System.getProperty("java.vm.name");
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
42
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
43 // For 32-bit systems, create 257 malloc sites with the same hash bucket to overflow a hash bucket
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
44 // For 64-bit systems, create 64K + 1 malloc sites with the same hash bucket to overflow a hash bucket
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
45 long entries = 257;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
46 if (Platform.is64bit()) {
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
47 entries = 64 * K + 1;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
48 }
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
49
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
50 OutputAnalyzer output;
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
51 WhiteBox wb = WhiteBox.getWhiteBox();
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
52
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
53 // Grab my own PID
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
54 String pid = Integer.toString(ProcessTools.getProcessId());
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
55 ProcessBuilder pb = new ProcessBuilder();
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
56
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
57 wb.NMTOverflowHashBucket(entries);
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
58
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
59 // Run 'jcmd <pid> VM.native_memory summary'
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
60 pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "statistics"});
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
61 output = new OutputAnalyzer(pb.start());
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
62 output.shouldContain("Tracking level has been downgraded due to lack of resources");
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
63 }
017b0145f20c 8054952: [TESTBUG] Add missing NMT2 tests
gtriantafill
parents:
diff changeset
64 }