Skip to content

Commit c104089

Browse files
author
Roger Riggs
committedJul 27, 2022
8290848: LoadLibraryUnload.java still fails with "Too few cleared WeakReferences"
Reviewed-by: mchung, jpai
1 parent 9234624 commit c104089

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed
 

‎test/jdk/ProblemList-Xcomp.txt

-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,4 @@
2929

3030
java/lang/invoke/MethodHandles/CatchExceptionTest.java 8146623 generic-all
3131
java/lang/ref/ReferenceEnqueue.java 8284236 generic-all
32-
java/lang/ClassLoader/loadLibraryUnload/LoadLibraryUnload.java 8290848 generic-all
3332
java/lang/ProcessBuilder/PipelineLeaksFD.java 8290885 generic-all

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
* LoadLibraryUnload class calls ClassLoader.loadedLibrary from multiple threads
2727
*/
2828
/*
29-
* @test
29+
* The driver for this test is LoadLibraryUnloadTest.java.
30+
*
3031
* @bug 8266310
3132
* @summary Loads a native library from multiple class loaders and multiple
3233
* threads. This creates a race for loading the library. The winner
@@ -35,14 +36,12 @@
3536
* loaded in a different class loader that won the race. The test
3637
* checks that the loaded class is GC'ed, that means the class loader
3738
* is GC'ed and the native library is unloaded.
38-
* @library /test/lib
39-
* @build LoadLibraryUnload p.Class1
40-
* @run main/othervm/native -Xcheck:jni LoadLibraryUnload
4139
*/
4240
import jdk.test.lib.Asserts;
4341
import jdk.test.lib.Utils;
4442

4543
import java.lang.*;
44+
import java.lang.ref.Reference;
4645
import java.lang.ref.ReferenceQueue;
4746
import java.lang.reflect.*;
4847
import java.lang.ref.WeakReference;
@@ -161,7 +160,6 @@ public static void main(String[] args) throws Exception {
161160
threads = null;
162161
canary = null;
163162
exceptions.clear();
164-
165163
// Wait for the canary for each of the libraries to be GC'd
166164
// before exiting the test.
167165
for (int i = 0; i < LOADER_COUNT; i++) {
@@ -172,5 +170,7 @@ public static void main(String[] args) throws Exception {
172170
Asserts.fail("Too few cleared WeakReferences");
173171
}
174172
}
173+
// Ensure the WeakReferences are strongly referenced until they can be dequeued
174+
Reference.reachabilityFence(wCanary);
175175
}
176176
}

0 commit comments

Comments
 (0)
Please sign in to comment.