Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8284233: serviceability/jvmti/vthread/InterruptThreadTest/InterruptThreadTest.java failing in loom repo #169

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -33,29 +33,34 @@
public class InterruptThreadTest {
private static final String AGENT_LIB = "InterruptThreadTest";
final Object lock = new Object();
final AtomicBoolean isJNITestingCompleted = new AtomicBoolean(false);

native boolean testJvmtiFunctionsInJNICall(Thread vthread);

volatile private boolean target_is_ready = false;
private boolean iterrupted = false;

final Runnable pinnedTask = () -> {
synchronized (lock) {
do {
try {
lock.wait(1);
} catch (InterruptedException ie) {
System.err.println("Virtual thread was interrupted as expected");
iterrupted = true;
}
} while (!isJNITestingCompleted.get());
try {
target_is_ready = true;
lock.wait();
} catch (InterruptedException ie) {
System.err.println("Virtual thread was interrupted as expected");
iterrupted = true;
}
}
};

void runTest() throws Exception {
Thread vthread = Thread.ofVirtual().name("VThread").start(pinnedTask);

// wait for target virtual thread to reach the expected waiting state
while (!target_is_ready) {
synchronized (lock) {
lock.wait(1);
}
}
testJvmtiFunctionsInJNICall(vthread);
isJNITestingCompleted.set(true);
vthread.join();
if (!iterrupted) {
throw new RuntimeException("Failed: Virtual thread was not interrupted!");