Skip to content

Commit c959207

Browse files
author
Andrew Lu
committedJun 20, 2024
8331999: BasicDirectoryModel/LoaderThreadCount.java frequently fails on Windows in CI
Introduce tolerance factor: count > loaderCount.size() / 2 Fail the test only if the number of snapshots with more than 2 file loader threads is greater than half of the number of valid snapshots. Backport-of: ffbdfffbc702253f32fa45dc1855b663c72074a6
1 parent 4bb85fc commit c959207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/jdk/javax/swing/plaf/basic/BasicDirectoryModel/LoaderThreadCount.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ private static void runTest(final long timeStart) throws Throwable {
164164
System.out.println(" = 1: " + ones);
165165
System.out.println(" = 2: " + twos);
166166
System.out.println(" > 2: " + count);
167-
if (count > 0) {
167+
if (count > loaderCount.size() / 2) {
168168
throw new RuntimeException("Detected " + count + " snapshots "
169169
+ "with several loading threads");
170170
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jun 20, 2024

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