Skip to content

Commit 2075294

Browse files
committedSep 8, 2021
JfrEvents test failing
1 parent 0198c83 commit 2075294

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ public void testVirtualThreadPinned() throws Exception {
9898
Object lock = new Object();
9999
synchronized (lock) {
100100
// pinned, duration < 500ms
101-
LockSupport.parkNanos(1);
101+
Thread.sleep(1);
102102

103103
// pinned, duration > 500ms
104-
long nanos = Duration.ofSeconds(5).toNanos();
105-
LockSupport.parkNanos(nanos);
106-
LockSupport.parkNanos(nanos);
104+
Thread.sleep(Duration.ofSeconds(3));
105+
Thread.sleep(Duration.ofSeconds(3));
107106
}
107+
return null;
108108
});
109109
} finally {
110110
recording.stop();

0 commit comments

Comments
 (0)
Please sign in to comment.