test/hotspot/jtreg/serviceability/sa/JhsdbThreadInfoTest.java
author jgeorge
Fri, 01 Dec 2017 18:19:39 +0530
changeset 48181 61a14b5cb1c6
parent 48178 88ec5fca7726
child 48500 899a137688b8
permissions -rw-r--r--
8191538: SA: tests for clhsdb commands: vmstructsdump, field, symboltable and symbol Summary: Create tests for the clhsdb commands: vmstructsdump, field, symboltable and symbol Reviewed-by: sspitsyn, sballal
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46636
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     1
/*
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     4
 *
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     7
 * published by the Free Software Foundation.
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     8
 *
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    13
 * accompanied this code).
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    14
 *
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    18
 *
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    21
 * questions.
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    22
 */
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    23
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    24
import jdk.test.lib.apps.LingeredApp;
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    25
import jdk.test.lib.JDKToolLauncher;
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    26
import jdk.test.lib.Platform;
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    27
import jdk.test.lib.process.OutputAnalyzer;
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    28
import jdk.test.lib.Utils;
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    29
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    30
/*
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    31
 * @test
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    32
 * @library /test/lib
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    33
 * @run main JhsdbThreadInfoTest
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    34
 */
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    35
public class JhsdbThreadInfoTest {
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    36
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    37
    public static void main(String[] args) throws Exception {
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    38
        if (!Platform.shouldSAAttach()) {
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    39
            System.out.println("SA attach not expected to work - test skipped.");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    40
            return;
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    41
        }
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    42
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    43
        LingeredApp app = null;
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    44
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    45
        try {
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    46
            app = LingeredApp.startApp(Utils.getVmOptions());
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    47
            System.out.println("Started LingeredApp with pid " + app.getPid());
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    48
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    49
            JDKToolLauncher jhsdbLauncher = JDKToolLauncher.createUsingTestJDK("jhsdb");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    50
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    51
            jhsdbLauncher.addToolArg("jstack");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    52
            jhsdbLauncher.addToolArg("--pid");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    53
            jhsdbLauncher.addToolArg(Long.toString(app.getPid()));
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    54
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    55
            ProcessBuilder pb = new ProcessBuilder();
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    56
            pb.command(jhsdbLauncher.getCommand());
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    57
            Process jhsdb = pb.start();
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    58
48178
88ec5fca7726 8191914: New SA test timeout on windows
jgeorge
parents: 47216
diff changeset
    59
            OutputAnalyzer out = new OutputAnalyzer(jhsdb);
46636
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    60
48178
88ec5fca7726 8191914: New SA test timeout on windows
jgeorge
parents: 47216
diff changeset
    61
            jhsdb.waitFor();
46636
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    62
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    63
            System.out.println(out.getStdout());
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    64
            System.err.println(out.getStderr());
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    65
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    66
            out.shouldMatch("\".+\" #\\d+ daemon prio=\\d+ tid=0x[0-9a-f]+ nid=0x[0-9a-f]+ .+ \\[0x[0-9a-f]+]");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    67
            out.shouldMatch("\"main\" #\\d+ prio=\\d+ tid=0x[0-9a-f]+ nid=0x[0-9a-f]+ .+ \\[0x[0-9a-f]+]");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    68
            out.shouldMatch("   java.lang.Thread.State: .+");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    69
            out.shouldMatch("   JavaThread state: _thread_.+");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    70
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    71
            out.shouldNotContain("   java.lang.Thread.State: UNKNOWN");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    72
            out.stderrShouldBeEmpty();
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    73
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    74
            System.out.println("Test Completed");
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    75
        } catch (InterruptedException ie) {
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    76
            throw new Error("Problem awaiting the child process: " + ie, ie);
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    77
        } catch (Exception attachE) {
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    78
            throw new Error("Couldn't start jhsdb, attach to LingeredApp or match ThreadName: " + attachE);
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    79
        } finally {
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    80
            LingeredApp.stopApp(app);
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    81
        }
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    82
    }
26b8de0359a0 8181647: jhsdb jstack could not output thread name
dbuck
parents:
diff changeset
    83
}