test/hotspot/jtreg/runtime/cds/SharedArchiveFile.java
author coleenp
Mon, 29 Jul 2019 10:34:20 -0400
changeset 57567 b000362a89a0
parent 53170 test/hotspot/jtreg/runtime/SharedArchiveFile/SharedArchiveFile.java@6a25433b30ed
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:
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
     1
/*
57567
b000362a89a0 8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds
coleenp
parents: 53170
diff changeset
     2
 * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
     4
 *
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
     7
 * published by the Free Software Foundation.
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
     8
 *
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    13
 * accompanied this code).
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    14
 *
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    18
 *
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    21
 * questions.
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    22
 */
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    23
46779
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46417
diff changeset
    24
/**
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    25
 * @test
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    26
 * @bug 8014138
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    27
 * @summary Testing new -XX:SharedArchiveFile=<file-name> option
48469
7312ae4465d6 8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents: 47216
diff changeset
    28
 * @requires vm.cds
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    29
 * @library /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 30604
diff changeset
    30
 * @modules java.base/jdk.internal.misc
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 17375
diff changeset
    31
 *          java.management
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    32
 */
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    33
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    34
import jdk.test.lib.cds.CDSTestUtils;
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    35
import jdk.test.lib.process.ProcessTools;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    36
import jdk.test.lib.process.OutputAnalyzer;
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    37
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    38
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    39
// NOTE: This test serves as a sanity test and also as an example for simple
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    40
// use of SharedArchiveFile argument. For this reason it DOES NOT use the utility
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    41
// methods to form command line to create/use shared archive.
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    42
public class SharedArchiveFile {
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    43
    public static void main(String[] args) throws Exception {
46417
1593c061e6af 8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents: 46389
diff changeset
    44
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(true,
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    45
                                "-XX:SharedArchiveFile=./SharedArchiveFile.jsa",
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    46
                                "-Xshare:dump");
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    47
        OutputAnalyzer out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile");
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    48
        CDSTestUtils.checkDump(out);
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    49
53170
6a25433b30ed 8215947: JVM crash with -XX:+DumpSharedSpaces
ccheung
parents: 49931
diff changeset
    50
        // -XX:+DumpSharedSpaces should behave the same as -Xshare:dump
6a25433b30ed 8215947: JVM crash with -XX:+DumpSharedSpaces
ccheung
parents: 49931
diff changeset
    51
        pb = ProcessTools.createJavaProcessBuilder(true,
6a25433b30ed 8215947: JVM crash with -XX:+DumpSharedSpaces
ccheung
parents: 49931
diff changeset
    52
                                "-XX:SharedArchiveFile=./SharedArchiveFile.jsa",
6a25433b30ed 8215947: JVM crash with -XX:+DumpSharedSpaces
ccheung
parents: 49931
diff changeset
    53
                                "-XX:+DumpSharedSpaces");
6a25433b30ed 8215947: JVM crash with -XX:+DumpSharedSpaces
ccheung
parents: 49931
diff changeset
    54
        out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile");
6a25433b30ed 8215947: JVM crash with -XX:+DumpSharedSpaces
ccheung
parents: 49931
diff changeset
    55
        CDSTestUtils.checkDump(out);
6a25433b30ed 8215947: JVM crash with -XX:+DumpSharedSpaces
ccheung
parents: 49931
diff changeset
    56
46417
1593c061e6af 8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents: 46389
diff changeset
    57
        pb = ProcessTools.createJavaProcessBuilder(true,
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    58
                              "-XX:SharedArchiveFile=./SharedArchiveFile.jsa",
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    59
                              "-Xshare:on", "-version");
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    60
        out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile");
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    61
        CDSTestUtils.checkExec(out);
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    62
    }
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    63
}