8289608: Change com/sun/jdi tests to not use Thread.suspend/resume

Reviewed-by: cjplummer, sspitsyn, alanb, dcubed
This commit is contained in:
Leonid Mesnik 2022-09-15 17:25:48 +00:00
parent ecb456ae29
commit 2028ec7412
3 changed files with 0 additions and 354 deletions

@ -49,7 +49,6 @@ com/sun/jdi/RedefineG.java 8285422 generic-all
com/sun/jdi/RedefineNestmateAttr/TestNestmateAttr.java 8285422 generic-all
com/sun/jdi/RedefineTTYLineNumber.java 8285422 generic-all
com/sun/jdi/ReferrersTest.java 8285422 generic-all
com/sun/jdi/ResumeAfterThreadResumeCallTest.java 8285422 generic-all
com/sun/jdi/SetLocalWhileThreadInNative.java 8285422 generic-all
com/sun/jdi/StepTest.java 8285422 generic-all
com/sun/jdi/redefine/RedefineTest.java 8285422 generic-all

@ -1,108 +0,0 @@
/*
* Copyright (c) 2005, 2018, 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
* @bug 6224859
* @summary JDWP: Mixing application suspends and debugger suspends can cause hangs
* @comment converted from test/jdk/com/sun/jdi/MixedSuspendTest.sh
*
* @library /test/lib
* @run main/othervm MixedSuspendTest
*/
import lib.jdb.JdbCommand;
import lib.jdb.JdbTest;
class MixedSuspendTarg extends Thread {
static volatile boolean started = true;
static String lock = "startLock";
public static void main(String[] args){
System.out.println("Howdy from MixedSuspendTarg");
MixedSuspendTarg mytarg = new MixedSuspendTarg();
synchronized(lock) {
mytarg.start();
try {
lock.wait();
} catch(InterruptedException ee) {
}
}
mytarg.suspend();
bkpt();
System.out.println("Debuggee: resuming thread");
// If the bug occurs, this resume hangs in the back-end
mytarg.resume();
System.out.println("Debuggee: resumed thread");
synchronized(lock) {
started = false;
}
System.out.println("Debuggee: exitting, started = " + started);
}
public void run() {
synchronized(lock) {
lock.notifyAll();
}
while (true) {
synchronized(lock) {
if (!started) {
break;
}
int i = 0;
}
}
System.out.println("Debuggee: end of thread");
}
static void bkpt() {
//System.out.println("bkpt reached, thread = " + this.getName());
int i = 0; // @1 breakpoint
}
}
public class MixedSuspendTest extends JdbTest {
public static void main(String argv[]) {
new MixedSuspendTest().run();
}
private MixedSuspendTest() {
super(DEBUGGEE_CLASS);
}
private static final String DEBUGGEE_CLASS = MixedSuspendTarg.class.getName();
@Override
protected void runCases() {
setBreakpointsFromTestSource("MixedSuspendTest.java", 1);
jdb.command(JdbCommand.run());
jdb.command(JdbCommand.cont().allowExit());
// This test fails by timing out.
}
}

@ -1,245 +0,0 @@
/*
* Copyright (c) 2021 SAP SE. 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
* @bug 8274687
* @summary Test the special handling in the JDWP agent of threads that call
* j.l.Thread.resume().
*
* This is the sequence of actions by the debugger and the threads
* "main" and "resumee" in the target vm.
*
* "resumee": Reaches breakpoint in methodWithBreakpoint() and is
* suspended then.
*
* "main": Calls j.l.Thread.resume() for "resumee". There is an internal
* breakpoint in Thread.resume() so the JDWP agent receives a
* breakpoint event. It finds that "resumee" is suspended because
* of JDWP actions. The resume() call would interfere with the
* debugger therefore "main" is blocked.
*
* Debugger: Tests if the suspended "resumee" can be suspended a second
* time and resumes it again.
*
* Debugger: Resumes "resumee" by calling ThreadReference.resume().
* The JDWP agent notifies "main" about it.
*
* "resumee": Continues execution.
*
* "main": Receives the notification, finds that "resumee" is not
* suspended anymore and continues execution.
*
* Debugger: Verifies that "main" is no longer blocked.
*
* @author Richard Reingruber richard DOT reingruber AT sap DOT com
*
* @library /test/lib
*
* @run build TestScaffold VMConnection TargetListener TargetAdapter
* @run compile -g ResumeAfterThreadResumeCallTest.java
* @run driver ResumeAfterThreadResumeCallTest
*/
import com.sun.jdi.*;
import com.sun.jdi.event.*;
import jdk.test.lib.Asserts;
import java.util.*;
// Target program for the debugger
class ResumeAfterThreadResumeCallTarg extends Thread {
public boolean reachedBreakpoint;
public boolean mainThreadReturnedFromResumeCall;
public boolean testFinished;
public ResumeAfterThreadResumeCallTarg(String name) {
super(name);
}
public static void log(String m) {
String threadName = Thread.currentThread().getName();
System.out.println("###(Target,"+ threadName +") " + m);
}
public static void main(String[] args) {
log("Entered main()");
// Start "resumee" thread.
ResumeAfterThreadResumeCallTarg resumee = new ResumeAfterThreadResumeCallTarg("resumee");
resumee.start();
// Wait for "resumee" to reach the breakpoint in methodWithBreakpoint().
while (!resumee.reachedBreakpoint) {
try {
Thread.sleep(100);
} catch (InterruptedException e) { /* ignored */ }
}
// "resumee" is suspended now because of the breakpoint
// Calling Thread.resume() will block this thread.
log("Calling Thread.resume()");
resumee.resume();
resumee.mainThreadReturnedFromResumeCall = true;
log("Thread.resume() returned");
// Wait for debugger
while (!resumee.testFinished) {
try {
Thread.sleep(100);
} catch (InterruptedException e) { /* ignored */ }
}
}
public void run() {
log("up and running.");
methodWithBreakpoint();
}
public void methodWithBreakpoint() {
log("Entered methodWithBreakpoint()");
}
}
// Debugger program
public class ResumeAfterThreadResumeCallTest extends TestScaffold {
public static final String TARGET_CLS_NAME = ResumeAfterThreadResumeCallTarg.class.getName();
public static final long UNBLOCK_TIMEOUT = 10000;
ResumeAfterThreadResumeCallTest (String args[]) {
super(args);
}
public static void main(String[] args) throws Exception {
new ResumeAfterThreadResumeCallTest(args).startTests();
}
/**
* Set a breakpoint in the given method and resume all threads. The
* breakpoint is configured to suspend just the thread that reaches it
* instead of all threads.
*/
public BreakpointEvent resumeTo(String clsName, String methodName, String signature) {
boolean suspendThreadOnly = true;
return resumeTo(clsName, methodName, signature, suspendThreadOnly);
}
protected void runTests() throws Exception {
BreakpointEvent bpe = startToMain(TARGET_CLS_NAME);
mainThread = bpe.thread();
log("Resuming to methodWithBreakpoint()");
bpe = resumeTo(TARGET_CLS_NAME, "methodWithBreakpoint", "()V");
log("Thread \"resumee\" has reached the breakpoint and is suspended now.");
ThreadReference resumee = bpe.thread();
ObjectReference resumeeThreadObj = resumee.frame(1).thisObject();
printStack(resumee);
mainThread.suspend();
printStack(mainThread);
mainThread.resume();
log("resumee.isSuspended() -> " + resumee.isSuspended());
log("mainThread.isSuspended() -> " + mainThread.isSuspended());
log("Notify target main thread to continue by setting reachedBreakpoint = true.");
setField(resumeeThreadObj, "reachedBreakpoint", vm().mirrorOf(true));
log("Sleeping 500ms so that the main thread is blocked calling Thread.resume() on \"resumee\" Thread.");
Thread.sleep(500);
log("After sleep.");
mainThread.suspend();
printStack(mainThread);
mainThread.resume();
boolean mainThreadReturnedFromResumeCall = false;
boolean resumedResumee = false;
for (long sleepTime = 50; sleepTime < UNBLOCK_TIMEOUT && !mainThreadReturnedFromResumeCall; sleepTime <<= 1) {
log("mainThread.isSuspended() -> " + mainThread.isSuspended());
Value v = getField(resumeeThreadObj, "mainThreadReturnedFromResumeCall");
mainThreadReturnedFromResumeCall = ((PrimitiveValue) v).booleanValue();
if (!resumedResumee) {
// main thread should still be blocked.
Asserts.assertFalse(mainThreadReturnedFromResumeCall, "main Thread was not blocked");
// Test suspending the already suspended resumee thread.
Asserts.assertTrue(resumee.isSuspended(), "\"resumee\" is not suspended.");
log("Check if suspended \"resumee\" can be suspended a 2nd time.");
resumee.suspend();
log("resumee.isSuspended() -> " + resumee.isSuspended());
log("Resuming \"resumee\"");
resumee.resume();
Asserts.assertTrue(resumee.isSuspended(), "\"resumee\" is not suspended.");
// Really resume the resumee thread.
log("Resuming \"resumee\" a 2nd time will unblock the main thread.");
resumee.resume();
Asserts.assertFalse(resumee.isSuspended(), "\"resumee\" is still suspended.");
resumedResumee = true;
}
log("Sleeping " + sleepTime + "ms");
Thread.sleep(sleepTime);
}
Asserts.assertTrue(mainThreadReturnedFromResumeCall, "main Thread was not unblocked");
setField(resumeeThreadObj, "testFinished", vm().mirrorOf(true));
// Resume the target listening for events
listenUntilVMDisconnect();
}
public void printStack(ThreadReference thread) throws Exception {
log("Stack of thread '" + thread.name() + "':");
List<StackFrame> stack_frames = thread.frames();
int i = 0;
for (StackFrame ff : stack_frames) {
Location loc = ff.location();
String locString = "bci:" + loc.codeIndex();
try {
locString = loc.sourceName() + ":" + loc.lineNumber() + "," + locString;
} catch (AbsentInformationException e) {/* empty */};
log(" frame[" + i++ +"]: " + ff.location().method() + " (" + locString + ")");
}
}
public void setField(ObjectReference obj, String fName, Value val) throws Exception {
log("set field " + fName + " = " + val);
ReferenceType rt = obj.referenceType();
Field fld = rt.fieldByName(fName);
obj.setValue(fld, val);
log("ok");
}
public Value getField(ObjectReference obj, String fName) throws Exception {
log("get field " + fName);
ReferenceType rt = obj.referenceType();
Field fld = rt.fieldByName(fName);
Value val = obj.getValue(fld);
log("result : " + val);
return val;
}
public void log(String m) {
System.out.println("###(Debugger) " + m);
}
}