test/hotspot/jtreg/runtime/cds/appcds/ParallelLoadTest.java
author iklam
Tue, 24 Sep 2019 10:36:35 -0700
changeset 58300 c3b93d6603f5
parent 58260 704e4ff399a2
child 58679 9c3209ff7550
permissions -rw-r--r--
8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported" Reviewed-by: 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: 51990
diff changeset
     2
 * Copyright (c) 2014, 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 Load app classes from CDS archive in parallel threads
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    28
 * @library /test/lib
48469
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 48138
diff changeset
    29
 * @requires vm.cds
57705
7cf02b2c1455 8229267: [TESTBUG] Remove unnecessary @modules dependencies in CDS tests
iklam
parents: 57567
diff changeset
    30
 * @modules jdk.jartool/sun.tools.jar
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    31
 * @compile test-classes/ParallelLoad.java
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    32
 * @compile test-classes/ParallelClasses.java
51990
6003e034cdd8 8209946: [TESTBUG] CDS tests should use "@run driver"
iklam
parents: 48469
diff changeset
    33
 * @run driver ParallelLoadTest
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    34
 */
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    35
58300
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    36
import java.io.File;
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    37
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    38
public class ParallelLoadTest {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    39
    public static final int MAX_CLASSES = 40;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    40
58260
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    41
    /* For easy stress testing, do this:
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    42
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    43
       i=0; while jtreg -DParallelLoadTest.app.loops=100 -DParallelLoadTest.boot.loops=100 \
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    44
           ParallelLoadTest.java; do i=$(expr $i + 1); echo =====$i; done
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    45
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    46
     */
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    47
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    48
    private static final int APP_LOOPS  = Integer.parseInt(System.getProperty("ParallelLoadTest.app.loops", "1"));
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    49
    private static final int BOOT_LOOPS = Integer.parseInt(System.getProperty("ParallelLoadTest.boot.loops", "1"));
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    50
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    51
    public static void main(String[] args) throws Exception {
58300
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    52
        JarBuilder.build("parallel_load_app", "ParallelLoad", "ParallelLoadThread", "ParallelLoadWatchdog");
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    53
        JarBuilder.build("parallel_load_classes", getClassList());
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    54
        String appJar     = TestCommon.getTestJar("parallel_load_app.jar");
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    55
        String classesJar = TestCommon.getTestJar("parallel_load_classes.jar");
58260
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    56
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    57
        // (1) Load the classes from app class loader
58300
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    58
        String CP = appJar + File.pathSeparator + classesJar;
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    59
        TestCommon.testDump(CP, getClassList());
58260
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    60
        for (int i = 0; i < APP_LOOPS; i++) {
58300
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    61
            TestCommon.run("-cp", CP,  "ParallelLoad").assertNormalExit();
58260
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    62
        }
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    63
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    64
        // (2) Load the classes from boot class loader
58300
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    65
        String bootcp = "-Xbootclasspath/a:" + classesJar;
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    66
        TestCommon.testDump(appJar, getClassList(), bootcp);
58260
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    67
        for (int i = 0; i < BOOT_LOOPS; i++) {
58300
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    68
            TestCommon.run(bootcp, "-cp", appJar,
58260
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    69
                           // "-Xlog:class+load=debug",
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    70
                           "ParallelLoad").assertNormalExit();
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    71
        }
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    72
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    73
58300
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    74
    private static String[] getClassList() {
c3b93d6603f5 8231367: [TESTBUG] ParallelLoadTest.java fails with "test.dynamic.dump not supported"
iklam
parents: 58260
diff changeset
    75
        String[] classList = new String[MAX_CLASSES];
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    76
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    77
        int i;
58260
704e4ff399a2 8231125: Improve testing of parallel loading of shared classes by the boot class loader
iklam
parents: 57705
diff changeset
    78
        for (i = 0; i < MAX_CLASSES; i++) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    79
            classList[i] = "ParallelClass" + i;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    80
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    81
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    82
        return classList;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    83
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    84
}