test/hotspot/jtreg/runtime/SharedArchiveFile/SharedArchiveFile.java
author shade
Thu, 30 Nov 2017 17:13:33 +0100
branchepsilon-gc-branch
changeset 55934 912c55e702d6
parent 47216 71c04702a3d5
child 48469 7312ae4465d6
permissions -rw-r--r--
Merge
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
/*
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
     2
 * Copyright (c) 2013, 2017, 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
46779
d80ca591ae48 8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents: 46417
diff changeset
    26
 * @requires vm.cds
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    27
 * @bug 8014138
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    28
 * @summary Testing new -XX:SharedArchiveFile=<file-name> option
46417
1593c061e6af 8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents: 46389
diff changeset
    29
 * @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true)
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    30
 * @library /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 30604
diff changeset
    31
 * @modules java.base/jdk.internal.misc
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 17375
diff changeset
    32
 *          java.management
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    33
 */
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    34
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    35
import jdk.test.lib.cds.CDSTestUtils;
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    36
import jdk.test.lib.process.ProcessTools;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    37
import jdk.test.lib.process.OutputAnalyzer;
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    38
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    39
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    40
// 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
    41
// 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
    42
// methods to form command line to create/use shared archive.
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    43
public class SharedArchiveFile {
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    44
    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
    45
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(true,
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    46
                                "-XX:+UnlockDiagnosticVMOptions",
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    47
                                "-XX:SharedArchiveFile=./SharedArchiveFile.jsa",
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    48
                                "-Xshare:dump");
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    49
        OutputAnalyzer out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile");
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    50
        CDSTestUtils.checkDump(out);
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    51
46417
1593c061e6af 8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents: 46389
diff changeset
    52
        pb = ProcessTools.createJavaProcessBuilder(true,
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    53
                              "-XX:+UnlockDiagnosticVMOptions",
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    54
                              "-XX:SharedArchiveFile=./SharedArchiveFile.jsa",
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    55
                              "-Xshare:on", "-version");
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    56
        out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile");
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 40631
diff changeset
    57
        CDSTestUtils.checkExec(out);
17375
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    58
    }
e9554fd82263 8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
diff changeset
    59
}