hotspot/test/runtime/SharedArchiveFile/SASymbolTableTest.java
author mseledtsov
Tue, 23 May 2017 20:14:52 -0700
changeset 46491 e43953993af3
parent 46417 1593c061e6af
child 46779 d80ca591ae48
permissions -rw-r--r--
8180631: [TESTBUG] CDS tests should use CDSTestUtils.executeAndLog whenever spawning sub processes Summary: Updated all relevant call sites to use executeAndLog() Reviewed-by: iklam, ccheung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
     1
/*
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 42047
diff changeset
     2
 * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
     4
 *
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
     7
 * published by the Free Software Foundation.
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
     8
 *
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    13
 * accompanied this code).
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    14
 *
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    18
 *
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    21
 * questions.
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    22
 */
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    23
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    24
/*
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    25
 * @test SASymbolTableTest
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    26
 * @summary Walk symbol table using SA, with and without CDS.
46417
1593c061e6af 8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents: 46389
diff changeset
    27
 * @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true)
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40244
diff changeset
    28
 * @library /test/lib
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    29
 * @modules java.base/jdk.internal.misc
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    30
 *          jdk.hotspot.agent/sun.jvm.hotspot.oops
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    31
 *          jdk.hotspot.agent/sun.jvm.hotspot.memory
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    32
 *          jdk.hotspot.agent/sun.jvm.hotspot.runtime
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    33
 *          jdk.hotspot.agent/sun.jvm.hotspot.tools
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    34
 *          java.management
41340
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    35
 * @build SASymbolTableTestAgent
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    36
 * @run main SASymbolTableTest
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    37
 */
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    38
41340
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    39
import java.util.Arrays;
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    40
import java.util.List;
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 42047
diff changeset
    41
import jdk.test.lib.cds.CDSTestUtils;
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40244
diff changeset
    42
import jdk.test.lib.process.ProcessTools;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40244
diff changeset
    43
import jdk.test.lib.process.OutputAnalyzer;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40244
diff changeset
    44
import jdk.test.lib.JDKToolFinder;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40244
diff changeset
    45
import jdk.test.lib.Platform;
41340
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    46
import jdk.test.lib.apps.LingeredApp;
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    47
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    48
/*
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    49
 * The purpose of this test is to validate that we can use SA to
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    50
 * attach a process and walk its SymbolTable, regardless whether
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    51
 * the attachee process runs in CDS mode or not.
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    52
 *
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    53
 * SASymbolTableTest Just sets up the agent and attachee processes.
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    54
 * The SymbolTable walking is done in the SASymbolTableTestAgent class.
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    55
 */
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    56
public class SASymbolTableTest {
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    57
    static String jsaName = "./SASymbolTableTest.jsa";
41340
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    58
    private static LingeredApp theApp = null;
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    59
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 42047
diff changeset
    60
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    61
    public static void main(String[] args) throws Exception {
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    62
        if (!Platform.shouldSAAttach()) {
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    63
            System.out.println("SA attach not expected to work - test skipped.");
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    64
            return;
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    65
        }
46389
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 42047
diff changeset
    66
d55896236dfd 8177728: [TESTBUG] Improve CDS test utils
mseledtsov
parents: 42047
diff changeset
    67
        CDSTestUtils.createArchiveAndCheck();
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    68
        run(true);
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    69
        run(false);
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    70
    }
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    71
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    72
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    73
    private static void run(boolean useArchive) throws Exception {
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    74
        String flag = useArchive ? "auto" : "off";
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    75
41340
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    76
        try {
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    77
            // (1) Launch the attachee process
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    78
            System.out.println("Starting LingeredApp");
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    79
            List<String> vmOpts = Arrays.asList(
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    80
                    "-XX:+UnlockDiagnosticVMOptions",
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    81
                    "-XX:SharedArchiveFile=" + jsaName,
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    82
                    "-Xshare:" + flag,
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    83
                    "-showversion");                // so we can see "sharing" in the output
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    84
41340
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    85
            theApp = LingeredApp.startApp(vmOpts);
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
    86
41340
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    87
            // (2) Launch the agent process
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    88
            long pid = theApp.getPid();
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    89
            System.out.println("Attaching agent to " + pid );
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    90
            ProcessBuilder tool = ProcessTools.createJavaProcessBuilder(
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    91
                    "--add-modules=jdk.hotspot.agent",
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    92
                    "--add-exports=jdk.hotspot.agent/sun.jvm.hotspot.oops=ALL-UNNAMED",
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    93
                    "--add-exports=jdk.hotspot.agent/sun.jvm.hotspot.memory=ALL-UNNAMED",
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    94
                    "--add-exports=jdk.hotspot.agent/sun.jvm.hotspot.runtime=ALL-UNNAMED",
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    95
                    "--add-exports=jdk.hotspot.agent/sun.jvm.hotspot.tools=ALL-UNNAMED",
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    96
                    "SASymbolTableTestAgent",
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    97
                    Long.toString(pid));
46491
e43953993af3 8180631: [TESTBUG] CDS tests should use CDSTestUtils.executeAndLog whenever spawning sub processes
mseledtsov
parents: 46417
diff changeset
    98
            OutputAnalyzer output = CDSTestUtils.executeAndLog(tool, "tool");
41340
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
    99
            if (output.getStdout().contains("connected too early")) {
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   100
                System.out.println("SymbolTable not created by VM - test skipped");
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   101
                return;
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   102
            }
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   103
            output.shouldHaveExitValue(0);
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   104
        } catch (Exception ex) {
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   105
            throw new RuntimeException("Test ERROR " + ex, ex);
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   106
        } finally {
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   107
            LingeredApp.stopApp(theApp);
64703e04389c 8165537: runtime/SharedArchiveFile/SASymbolTableTest.java fails with NullPointerException
vtewari
parents: 40631
diff changeset
   108
        }
37995
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
   109
    }
92aec042a43b 8150607: Clean up CompactHashtable
iklam
parents:
diff changeset
   110
}