Skip to content

Commit c2ce56b

Browse files
committedMay 8, 2020
CustomScheduler failing intermittently
1 parent a087301 commit c2ce56b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* @summary Test virtual threads using a custom scheduler
2828
*/
2929

30+
import java.time.Duration;
3031
import java.util.ArrayList;
3132
import java.util.List;
3233
import java.util.concurrent.CopyOnWriteArrayList;
@@ -83,8 +84,9 @@ public void testAttach() throws Exception {
8384
Thread.builder()
8485
.virtual(scheduler)
8586
.task(() -> {
86-
LockSupport.parkNanos(100L);
87-
LockSupport.parkNanos(100L);
87+
long nanos = Duration.ofSeconds(2).toNanos();
88+
LockSupport.parkNanos(nanos);
89+
LockSupport.parkNanos(nanos);
8890
})
8991
.start()
9092
.join();

0 commit comments

Comments
 (0)
Please sign in to comment.