test/hotspot/jtreg/runtime/cds/appcds/sharedStrings/SharedStringsStress.java
author coleenp
Mon, 29 Jul 2019 10:34:20 -0400
changeset 57567 b000362a89a0
parent 52811 test/hotspot/jtreg/runtime/appcds/sharedStrings/SharedStringsStress.java@ff04b71bf6f1
permissions -rw-r--r--
8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds Summary: add top level cds directory and adjust test groups Reviewed-by: mseledtsov, ccheung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     1
/*
57567
b000362a89a0 8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds
coleenp
parents: 52811
diff changeset
     2
 * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     4
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     7
 * published by the Free Software Foundation.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     8
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    13
 * accompanied this code).
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    14
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    18
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    21
 * questions.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    22
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    23
 */
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    24
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    25
/*
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    26
 * @test
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    27
 * @summary Write a lots of shared strings.
49008
d777541fceba 8191375: Add high-level jtreg VMProps to filter out CDS tests
iklam
parents: 48469
diff changeset
    28
 * @requires vm.cds.archived.java.heap
57567
b000362a89a0 8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds
coleenp
parents: 52811
diff changeset
    29
 * @library /test/hotspot/jtreg/runtime/cds/appcds /test/lib
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    30
 * @modules jdk.jartool/sun.tools.jar
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    31
 * @build HelloString
52811
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    32
 * @run driver/timeout=500 SharedStringsStress
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    33
 */
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    34
import java.io.File;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    35
import java.io.FileOutputStream;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    36
import java.io.OutputStreamWriter;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    37
import java.io.PrintWriter;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    38
import jdk.test.lib.process.OutputAnalyzer;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    39
import jdk.test.lib.process.ProcessTools;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    40
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    41
public class SharedStringsStress {
52811
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    42
    static String sharedArchiveConfigFile = System.getProperty("user.dir") + File.separator + "SharedStringsStress_gen.txt";
52400
ca309ee4fd92 8211336: [TESTBUG] appcds tests with incorrect usage of -XX:+UseStringDeduplication
iklam
parents: 51990
diff changeset
    43
52811
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    44
    public static void main(String[] args) throws Exception {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    45
        try (FileOutputStream fos = new FileOutputStream(sharedArchiveConfigFile)) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    46
            PrintWriter out = new PrintWriter(new OutputStreamWriter(fos));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    47
            out.println("VERSION: 1.0");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    48
            out.println("@SECTION: String");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    49
            out.println("31: shared_test_string_unique_14325");
52811
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    50
            for (int i=0; i<200000; i++) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    51
                String s = "generated_string " + i;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    52
                out.println(s.length() + ": " + s);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    53
            }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    54
            out.close();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    55
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    56
52811
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    57
        SharedStringsUtils.run(args, SharedStringsStress::test);
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    58
    }
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    59
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    60
    public static void test(String[] args) throws Exception {
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    61
        String vmOptionsPrefix[] = SharedStringsUtils.getChildVMOptionsPrefix();
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    62
        String appJar = JarBuilder.build("SharedStringsStress", "HelloString");
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    63
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    64
        String test_cases[][] = {
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    65
            // default heap size
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    66
            {},
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    67
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    68
            // Test for handling of heap fragmentation. With sharedArchiveConfigFile, we will dump about
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    69
            // 18MB of shared objects on 64 bit VM (smaller on 32-bit).
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    70
            //
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    71
            // During dump time, an extra copy of these objects are allocated,
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    72
            // so we need about 36MB, plus a few MB for other system data. So 64MB total heap
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    73
            // should be enough.
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    74
            //
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    75
            // The VM should executed a full GC to maximize contiguous free space and
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    76
            // avoid fragmentation.
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    77
            {"-Xmx64m"},
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    78
        };
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    79
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    80
        for (String[] extra_opts: test_cases) {
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    81
            vmOptionsPrefix = TestCommon.concat(vmOptionsPrefix, extra_opts);
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    82
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    83
            OutputAnalyzer dumpOutput = TestCommon.dump(appJar, TestCommon.list("HelloString"),
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    84
                TestCommon.concat(vmOptionsPrefix,
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    85
                    "-XX:SharedArchiveConfigFile=" + sharedArchiveConfigFile,
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    86
                    "-Xlog:gc+region+cds",
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    87
                    "-Xlog:gc+region=trace"));
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    88
            TestCommon.checkDump(dumpOutput);
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    89
            OutputAnalyzer execOutput = TestCommon.exec(appJar,
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    90
                TestCommon.concat(vmOptionsPrefix, "HelloString"));
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    91
            TestCommon.checkExec(execOutput);
ff04b71bf6f1 8214388: CDS dumping fails with java heap fragmentation
iklam
parents: 52400
diff changeset
    92
        }
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    93
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    94
}