Skip to content

Commit 112a4bd

Browse files
author
Harold Seigel
committedJun 24, 2020
8247966: runtime/logging/loadLibraryTest/LoadLibraryTest.java failed "RuntimeException: 'Unloaded library with handle' missing from stdout/stderr"
Make sure the native library is unloaded before exiting the main thread. Reviewed-by: dcubed, dholmes
1 parent 9584e01 commit 112a4bd

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
 

‎test/hotspot/jtreg/runtime/logging/loadLibraryTest/LoadLibraryTest.java

+16
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,22 @@ public static void main(String[] args) throws Exception {
6464
WhiteBox wb = WhiteBox.getWhiteBox();
6565
if (!wb.isClassAlive(CLASS_NAME)) {
6666
System.out.println("Class LoadLibraryClass was unloaded");
67+
while (true) {
68+
try {
69+
System.loadLibrary("LoadLibraryClass");
70+
// Able to load the library with this class's class loader
71+
// so it must have been unloaded by myLoader.
72+
break;
73+
} catch(java.lang.UnsatisfiedLinkError e) {
74+
if (e.getMessage().contains("already loaded in another classloader")) {
75+
// Library has not been unloaded yet, so wait a little and check again.
76+
Thread.sleep(10);
77+
} else {
78+
throw new RuntimeException(
79+
"Unexpected UnsatisfiedLinkError: " + e.getMessage());
80+
}
81+
}
82+
}
6783
}
6884
}
6985

0 commit comments

Comments
 (0)
Please sign in to comment.