Skip to content

Commit e02627c

Browse files
author
Roger Riggs
committedJul 19, 2022
8290397: LoadLibraryUnload.java failed with "Too few cleared WeakReferences"
Reviewed-by: mchung
1 parent 2ff2208 commit e02627c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/jdk/java/lang/ClassLoader/loadLibraryUnload/LoadLibraryUnload.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public static void main(String[] args) throws Exception {
166166
// before exiting the test.
167167
for (int i = 0; i < LOADER_COUNT; i++) {
168168
System.gc();
169-
var res = refQueue.remove(Utils.adjustTimeout(5 * 1000L));
169+
var res = refQueue.remove(Utils.adjustTimeout(30 * 1000L));
170170
System.out.println(i + " dequeued: " + res);
171171
if (res == null) {
172172
Asserts.fail("Too few cleared WeakReferences");

0 commit comments

Comments
 (0)
Please sign in to comment.