Skip to content

Commit e06d01d

Browse files
author
SendaoYan
committedFeb 21, 2025
8349787: java/lang/Thread/virtual/ThreadPollOnYield.java#default passes unexpectedly without libVThreadPinner.so
Backport-of: adc3f53d2403cd414a91e71c079b4108b2346da0
1 parent ec34f8b commit e06d01d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎test/jdk/java/lang/Thread/virtual/ThreadPollOnYield.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,16 @@
4040
*/
4141

4242
import java.util.concurrent.atomic.AtomicBoolean;
43+
import java.util.concurrent.CountDownLatch;
4344

4445
import jdk.test.lib.thread.VThreadPinner;
4546
import org.junit.jupiter.api.Test;
4647
import static org.junit.jupiter.api.Assertions.*;
4748

4849
class ThreadPollOnYield {
50+
private static final CountDownLatch started = new CountDownLatch(1);
4951
static void foo(AtomicBoolean done) {
52+
started.countDown();
5053
while (!done.get()) {
5154
Thread.yield();
5255
}
@@ -58,7 +61,7 @@ void testThreadYieldPolls() throws Exception {
5861
var vthread = Thread.ofVirtual().start(() -> {
5962
VThreadPinner.runPinned(() -> foo(done));
6063
});
61-
Thread.sleep(5000);
64+
started.await();
6265
done.set(true);
6366
vthread.join();
6467

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Feb 21, 2025

@openjdk-notifier[bot]
Please sign in to comment.