-
Bug
-
Resolution: Not an Issue
-
P4
-
14
After 8231999, it seems the test stuck inside the following loop:
public static void testGC(boolean clear, boolean precompile) throws Throwable {
...
do {
System.gc();
try {
Reference ref1 = rq.remove(100);
if (ref1 == ref) {
break;
}
} catch(InterruptedException e) { /* ignore */ }
} while (true);
public static void testGC(boolean clear, boolean precompile) throws Throwable {
...
do {
System.gc();
try {
Reference ref1 = rq.remove(100);
if (ref1 == ref) {
break;
}
} catch(InterruptedException e) { /* ignore */ }
} while (true);
- relates to
-
JDK-8231999 Shenandoah: Traversal failed compiler/jsr292/CallSiteDepContextTest.java
-
- Resolved
-