hotspot/test/runtime/SharedArchiveFile/SharedStrings.java
author amurillo
Mon, 11 Apr 2016 14:21:25 -0700
changeset 37297 d65d53a0ecc7
parent 36851 03e2f4d0a421
parent 37263 08dec586ed5c
child 38008 58732890050d
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32179
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
     1
/*
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 33730
diff changeset
     2
 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
32179
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
     4
 *
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
     8
 *
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    13
 * accompanied this code).
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    14
 *
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    18
 *
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    21
 * questions.
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    22
 */
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    23
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    24
/*
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    25
 * @test
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    26
 * @summary Check to make sure that shared strings in the bootstrap CDS archive
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    27
 *          are actually shared
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    28
 * Feature support: G1GC only, compressed oops/kptrs, 64-bit os, not on windows
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    29
 * @requires (sun.arch.data.model != "32") & (os.family != "windows")
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    30
 * @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true)
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    31
 * @requires (vm.gc=="G1" | vm.gc=="null")
33730
30e064828045 8140189: [TESTBUG] Get rid of "@library /../../test/lib" in jtreg tests
cjplummer
parents: 32615
diff changeset
    32
 * @library /testlibrary /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 36508
diff changeset
    33
 * @modules java.base/jdk.internal.misc
32179
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    34
 *          java.management
37263
08dec586ed5c 8153300: [TESTBUG] Enhance test/testlibrary/ClassFileInstaller.java to support JAR files
iklam
parents: 36508
diff changeset
    35
 * @build SharedStringsWb SharedStrings ClassFileInstaller sun.hotspot.WhiteBox
08dec586ed5c 8153300: [TESTBUG] Enhance test/testlibrary/ClassFileInstaller.java to support JAR files
iklam
parents: 36508
diff changeset
    36
 * @run main ClassFileInstaller -jar whitebox.jar sun.hotspot.WhiteBox
32179
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    37
 * @run main SharedStrings
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    38
 */
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    39
import jdk.test.lib.*;
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    40
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    41
public class SharedStrings {
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    42
    public static void main(String[] args) throws Exception {
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    43
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    44
            "-XX:+UnlockDiagnosticVMOptions",
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    45
            "-XX:SharedArchiveFile=./SharedStrings.jsa",
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    46
            "-XX:+PrintSharedSpaces",
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    47
            // Needed for bootclasspath match, for CDS to work with WhiteBox API
37263
08dec586ed5c 8153300: [TESTBUG] Enhance test/testlibrary/ClassFileInstaller.java to support JAR files
iklam
parents: 36508
diff changeset
    48
            "-Xbootclasspath/a:" + ClassFileInstaller.getJarPath("whitebox.jar"),
32179
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    49
            "-Xshare:dump");
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    50
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    51
        new OutputAnalyzer(pb.start())
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    52
            .shouldContain("Loading classes to share")
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    53
            .shouldContain("Shared string table stats")
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    54
            .shouldHaveExitValue(0);
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    55
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    56
        pb = ProcessTools.createJavaProcessBuilder(
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    57
            "-XX:+UnlockDiagnosticVMOptions",
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    58
            "-XX:SharedArchiveFile=./SharedStrings.jsa",
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    59
            // these are required modes for shared strings
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    60
            "-XX:+UseCompressedOops", "-XX:+UseG1GC",
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    61
            // needed for access to white box test API
37263
08dec586ed5c 8153300: [TESTBUG] Enhance test/testlibrary/ClassFileInstaller.java to support JAR files
iklam
parents: 36508
diff changeset
    62
            "-Xbootclasspath/a:" + ClassFileInstaller.getJarPath("whitebox.jar"),
32179
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    63
            "-XX:+UnlockDiagnosticVMOptions", "-XX:+WhiteBoxAPI",
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    64
            "-Xshare:on", "-showversion", "SharedStringsWb");
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    65
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    66
        OutputAnalyzer output = new OutputAnalyzer(pb.start());
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    67
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    68
        try {
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    69
            output.shouldContain("sharing");
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    70
            output.shouldHaveExitValue(0);
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    71
        } catch (RuntimeException e) {
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    72
            output.shouldContain("Unable to use shared archive");
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    73
            output.shouldHaveExitValue(1);
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    74
        }
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    75
    }
246b2ef581b2 8132214: [TESTBUG] Create basic shared strings test for CDS archive
mseledtsov
parents:
diff changeset
    76
}