26
26
* LoadLibraryUnload class calls ClassLoader.loadedLibrary from multiple threads
27
27
*/
28
28
/*
29
- * @test
29
+ * The driver for this test is LoadLibraryUnloadTest.java.
30
+ *
30
31
* @bug 8266310
31
32
* @summary Loads a native library from multiple class loaders and multiple
32
33
* threads. This creates a race for loading the library. The winner
35
36
* loaded in a different class loader that won the race. The test
36
37
* checks that the loaded class is GC'ed, that means the class loader
37
38
* 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
41
39
*/
42
40
import jdk .test .lib .Asserts ;
43
41
import jdk .test .lib .Utils ;
44
42
45
43
import java .lang .*;
44
+ import java .lang .ref .Reference ;
46
45
import java .lang .ref .ReferenceQueue ;
47
46
import java .lang .reflect .*;
48
47
import java .lang .ref .WeakReference ;
@@ -161,7 +160,6 @@ public static void main(String[] args) throws Exception {
161
160
threads = null ;
162
161
canary = null ;
163
162
exceptions .clear ();
164
-
165
163
// Wait for the canary for each of the libraries to be GC'd
166
164
// before exiting the test.
167
165
for (int i = 0 ; i < LOADER_COUNT ; i ++) {
@@ -172,5 +170,7 @@ public static void main(String[] args) throws Exception {
172
170
Asserts .fail ("Too few cleared WeakReferences" );
173
171
}
174
172
}
173
+ // Ensure the WeakReferences are strongly referenced until they can be dequeued
174
+ Reference .reachabilityFence (wCanary );
175
175
}
176
176
}
0 commit comments