File tree 1 file changed +16
-0
lines changed
test/hotspot/jtreg/runtime/logging/loadLibraryTest
1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,22 @@ public static void main(String[] args) throws Exception {
64
64
WhiteBox wb = WhiteBox .getWhiteBox ();
65
65
if (!wb .isClassAlive (CLASS_NAME )) {
66
66
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
+ }
67
83
}
68
84
}
69
85
You can’t perform that action at this time.
0 commit comments