1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
* Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test id=platform_thread
* @bug 8287847
* @summary Test suspending a platform thread after it has terminated.
* @run build TestScaffold VMConnection TargetListener TargetAdapter
* @run compile SuspendAfterDeath.java
* @run main/othervm SuspendAfterDeath
*/
/**
* @test id=virtual_thread
* @bug 8287847
* @summary Test suspending a virtual thread after it has terminated.
* @run build TestScaffold VMConnection TargetListener TargetAdapter
* @run compile SuspendAfterDeath.java
* @run main/othervm SuspendAfterDeath Virtual
*/
import com.sun.jdi.*;
import com.sun.jdi.event.*;
import com.sun.jdi.request.*;
import java.util.*;
class SuspendAfterDeathTarg {
static final String THREAD_NAME = "duke";
// breakpoint here
static void done() {
}
public static void main(String[] args) throws Exception {
boolean useVirtualThread = ((args.length > 0) && args[0].equals("Virtual"));
Thread thread;
System.out.println("Starting debuggee " + (useVirtualThread ? "virtual" : "platform") + " thread.");
if (useVirtualThread) {
thread = Thread.ofVirtual().name(THREAD_NAME).start(() -> { });
} else {
thread = Thread.ofPlatform().name(THREAD_NAME).start(() -> { });
}
thread.join();
done();
}
}
public class SuspendAfterDeath extends TestScaffold {
private volatile ThreadReference targetThread;
private volatile boolean breakpointReached;
private static boolean useVirtualThread = false;
SuspendAfterDeath() {
super(new String[0]); // no args to pass along to debuggee
}
public static void main(String[] args) throws Exception {
if (args.length == 1) {
if ("Virtual".equals(args[0])) {
useVirtualThread = true; // see connect() below for how this is handled
} else {
throw new RuntimeException("SuspendAfterDeath: invalid argument: " + args[0]);
}
} else if (args.length != 0) {
throw new RuntimeException("SuspendAfterDeath: incorrect number of arguments: " + args.length);
}
new SuspendAfterDeath().startTests();
}
@Override
public void threadDied(ThreadDeathEvent event) {
ThreadReference eventThread = event.thread();
if (eventThread.name().equals(SuspendAfterDeathTarg.THREAD_NAME)) {
System.out.println("Target thread died, thread=" + eventThread +
", state=" + eventThread.status());
targetThread = eventThread;
if (targetThread.status() != ThreadReference.THREAD_STATUS_RUNNING) {
failure("FAILED: wrong state for thread: " + targetThread.status());
}
}
}
@Override
public void breakpointReached(BreakpointEvent event) {
ThreadReference eventThread = event.thread();
System.out.println("Breakpoint, thread=" + eventThread);
if (targetThread == null) {
failure("FAILED: got Breakpoint event before ThreadDeath event.");
} else {
System.out.println("Target thread status at breakpoint: thread=" + targetThread +
", state=" + targetThread.status());
if (targetThread.status() != ThreadReference.THREAD_STATUS_ZOMBIE) {
failure("FAILED: wrong state for thread: " + targetThread.status());
}
breakpointReached = true;
/* Suspend the thread. This is being done after the thread has exited. */
targetThread.suspend();
}
}
@Override
public void connect(String args[]) {
if (useVirtualThread) {
/* Append the "Virtual" argument to the arguments used for the debuggee. */
List<String> argList = new ArrayList(Arrays.asList(args));
argList.add("Virtual");
args = argList.toArray(args);
}
super.connect(args);
}
@Override
protected void runTests() throws Exception {
BreakpointEvent bpe = startToMain("SuspendAfterDeathTarg");
EventRequestManager erm = vm().eventRequestManager();
// listener for ThreadDeathEvent captures reference to the thread
ThreadDeathRequest request1 = erm.createThreadDeathRequest();
request1.enable();
// listener for BreakpointEvent attempts to suspend the thread
ReferenceType targetClass = bpe.location().declaringType();
Location loc = findMethod(targetClass, "done", "()V").location();
BreakpointRequest request2 = erm.createBreakpointRequest(loc);
request2.setSuspendPolicy(EventRequest.SUSPEND_EVENT_THREAD);
request2.enable();
listenUntilVMDisconnect();
if (targetThread == null) {
failure("FAILED: never got ThreadDeath event for target thread.");
}
if (!breakpointReached) {
failure("FAILED: never got Breakpoint event for target thread.");
}
if (!testFailed) {
println("SuspendAfterDeath: passed");
} else {
throw new Exception("SuspendAfterDeath: failed");
}
}
}
|