Add comment about Thread.yield() in MemoryLeakTestUtil

This commit is contained in:
Florian Schmaus 2019-05-09 12:06:01 +02:00
parent 49f4de0cdb
commit 2dedd75cd7
1 changed files with 2 additions and 0 deletions

View File

@ -132,6 +132,8 @@ public class MemoryLeakTestUtil {
throw new AssertionError("No observed gargabe collection after " + gcCalls + " calls of System.gc()");
}
System.gc();
// TODO: Would a Thread.yield() here improve the chances of a full GC? It appears that on some systems we
// observe a partial GC here.
gcCalls++;
} while (weakReference.get() != null);