test/hotspot/jtreg/gc/TestSmallHeap.java
author lkorinth
Wed, 13 Nov 2019 11:37:29 +0100
changeset 59053 ba6c248cae19
parent 54638 9b8926bf85c1
permissions -rw-r--r--
8232365: Implementation for JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector Reviewed-by: kbarrett, tschatzl, erikj, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28205
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
     1
/*
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 48791
diff changeset
     2
 * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
28205
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
     4
 *
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
     7
 * published by the Free Software Foundation.
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
     8
 *
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    13
 * accompanied this code).
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    14
 *
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    18
 *
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    21
 * questions.
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    22
 */
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    23
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 48791
diff changeset
    24
package gc;
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 48791
diff changeset
    25
28205
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    26
/**
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    27
 * @test TestSmallHeap
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    28
 * @bug 8067438 8152239
28205
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    29
 * @summary Verify that starting the VM with a small heap works
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40018
diff changeset
    30
 * @library /test/lib
38152
80e5da81fb2c 8154258: [TESTBUG] Various serviceability tests fail compilation
dsamersoff
parents: 36508
diff changeset
    31
 * @modules java.base/jdk.internal.misc
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40018
diff changeset
    32
 * @build sun.hotspot.WhiteBox
48791
6e079ff6c83c 8186635: ClassFileInstaller should be run as a driver
iignatyev
parents: 47216
diff changeset
    33
 * @run driver ClassFileInstaller sun.hotspot.WhiteBox
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 48791
diff changeset
    34
 * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.TestSmallHeap
28635
4aebb881eaf9 8069011: gc/TestSmallHeap.java failing in nightly
sjohanss
parents: 28479
diff changeset
    35
 */
4aebb881eaf9 8069011: gc/TestSmallHeap.java failing in nightly
sjohanss
parents: 28479
diff changeset
    36
39993
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
    37
/* Note: It would be nice to verify the minimal supported heap size here,
28479
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    38
 * but we align the heap size based on the card table size. And the card table
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    39
 * size is aligned based on the minimal pages size provided by the os. This
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    40
 * means that on most platforms, where the minimal page size is 4k, we get a
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    41
 * minimal heap size of 2m but on Solaris/Sparc we have a page size of 8k and
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    42
 * get a minimal heap size of 4m. And on platforms where the page size is 64k
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    43
 * we get a minimal heap size of 32m. We never use large pages for the card table.
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    44
 *
28205
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    45
 * There is also no check in the VM for verifying that the maximum heap size
39993
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
    46
 * is larger than the supported minimal heap size.
28479
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    47
 *
39993
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
    48
 * To work around these behaviors this test uses -Xmx4m but then
28479
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    49
 * calculates what the expected heap size should be. The calculation is a
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    50
 * simplified version of the code in the VM. We assume that the card table will
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    51
 * use one page. Each byte in the card table corresponds to 512 bytes on the heap.
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    52
 * So, the expected heap size is page_size * 512.
39993
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
    53
 *
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
    54
 * There is no formal requirement for the minimal value of the maximum heap size
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
    55
 * the VM should support. In most cases the VM could start with -Xmx2m.
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
    56
 * But with 2m limit GC could be triggered before VM initialization completed.
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
    57
 * Therefore we start the VM with 4M heap.
28205
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    58
 */
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    59
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    60
import jdk.test.lib.Asserts;
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    61
import jdk.test.lib.process.OutputAnalyzer;
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    62
import jdk.test.lib.process.ProcessTools;
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    63
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    64
import java.util.LinkedList;
30247
9925b07bba5b 8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents: 29678
diff changeset
    65
54638
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    66
import jtreg.SkippedException;
28479
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    67
import sun.hotspot.WhiteBox;
54638
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    68
import sun.hotspot.gc.GC;
28205
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    69
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    70
public class TestSmallHeap {
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
    71
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    72
    public static void main(String[] args) throws Exception {
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    73
        // Do all work in the VM driving the test, the VM
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    74
        // with the small heap size should do as little as
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    75
        // possible to avoid hitting an OOME.
28479
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    76
        WhiteBox wb = WhiteBox.getWhiteBox();
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    77
        int pageSize = wb.getVMPageSize();
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    78
        int heapBytesPerCard = 512;
2268133fdd5f 8068653: TestSmalllHeap.java fails when the page size is 64k
brutisso
parents: 28210
diff changeset
    79
        long expectedMaxHeap = pageSize * heapBytesPerCard;
54638
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    80
        boolean noneGCSupported = true;
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    81
54638
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    82
        if (GC.Parallel.isSupported()) {
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    83
            noneGCSupported = false;
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    84
            verifySmallHeapSize("-XX:+UseParallelGC", expectedMaxHeap);
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    85
        }
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    86
        if (GC.Serial.isSupported()) {
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    87
            noneGCSupported = false;
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    88
            verifySmallHeapSize("-XX:+UseSerialGC", expectedMaxHeap);
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    89
        }
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    90
        if (GC.G1.isSupported()) {
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    91
            noneGCSupported = false;
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    92
            verifySmallHeapSize("-XX:+UseG1GC", expectedMaxHeap);
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    93
        }
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    94
        if (noneGCSupported) {
59053
ba6c248cae19 8232365: Implementation for JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector
lkorinth
parents: 54638
diff changeset
    95
            throw new SkippedException("Skipping test because none of Parallel/Serial/G1 is supported.");
54638
9b8926bf85c1 8220813: update hotspot tier1_gc tests depending on GC to use @requires vm.gc.X
lmesnik
parents: 53523
diff changeset
    96
        }
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    97
    }
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    98
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
    99
    private static void verifySmallHeapSize(String gc, long expectedMaxHeap) throws Exception {
39993
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
   100
        long minMaxHeap = 4 * 1024 * 1024;
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   101
        LinkedList<String> vmOptions = new LinkedList<>();
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   102
        vmOptions.add(gc);
39993
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
   103
        vmOptions.add("-Xmx" + minMaxHeap);
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   104
        vmOptions.add("-XX:+PrintFlagsFinal");
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   105
        vmOptions.add(VerifyHeapSize.class.getName());
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   106
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   107
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(vmOptions.toArray(new String[0]));
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   108
        OutputAnalyzer analyzer = new OutputAnalyzer(pb.start());
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   109
        analyzer.shouldHaveExitValue(0);
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   110
39993
82256382f7a1 8161552: Test issue: VM init failed: GC triggered before VM initialization completed. Try increasing NewSize, current value 768K.
dfazunen
parents: 38929
diff changeset
   111
        expectedMaxHeap = Math.max(expectedMaxHeap, minMaxHeap);
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   112
        long maxHeapSize = Long.parseLong(analyzer.firstMatch("MaxHeapSize.+=\\s+(\\d+)",1));
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   113
        long actualHeapSize = Long.parseLong(analyzer.firstMatch(VerifyHeapSize.actualMsg + "(\\d+)",1));
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   114
        Asserts.assertEQ(maxHeapSize, expectedMaxHeap);
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   115
        Asserts.assertLessThanOrEqual(actualHeapSize, maxHeapSize);
28205
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
   116
    }
6977216c35f2 8067438: Add test to verify minimal heap size
brutisso
parents:
diff changeset
   117
}
38929
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   118
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   119
class VerifyHeapSize {
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   120
    public static final String actualMsg = "Actual heap size: ";
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   121
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   122
    public static void main(String args[]) {
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   123
        // Avoid string concatenation
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   124
        System.out.print(actualMsg);
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   125
        System.out.println(Runtime.getRuntime().maxMemory());
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   126
    }
1ee62412a66f 8152239: hotspot/test/gc/TestSmallHeap.java failed in jdk9
sjohanss
parents: 38152
diff changeset
   127
}