Skip to content

Commit 79a3554

Browse files
committedJun 28, 2024
8335124: com/sun/management/ThreadMXBean/ThreadCpuTimeArray.java failed with CPU time out of expected range
Reviewed-by: phh, cjplummer
1 parent 45c4eaa commit 79a3554

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎test/jdk/com/sun/management/ThreadMXBean/ThreadCpuTimeArray.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ public static void main(String[] argv)
7575
// threads block after doing some computation
7676
waitUntilThreadBlocked();
7777

78-
7978
long times[] = mbean.getThreadCpuTime(ids);
8079
long userTimes[] = mbean.getThreadUserTime(ids);
8180

@@ -222,6 +221,8 @@ private static void waitUntilThreadBlocked()
222221
}
223222
}
224223
}
224+
// Account for threads using CPU for a few millis after their WAITING state is visible:
225+
goSleep(500);
225226
}
226227

227228
public static void doit() {

0 commit comments

Comments
 (0)
Please sign in to comment.