Force a collection at the beginning of TestRuntime to make a collection while allocating the array less likely. Fixes #1772.

This commit is contained in:
Marco Castelluccio 2015-07-28 16:13:43 +02:00
Родитель 7a16a8e285
Коммит c146d91b9a
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -9,6 +9,10 @@ public class TestRuntime implements Testlet {
public int getExpectedKnownFail() { return 0; }
public void test(TestHarness th) {
System.out.println("freeMemory0: " + Runtime.getRuntime().freeMemory());
Runtime.getRuntime().gc();
long totalMemory = Runtime.getRuntime().totalMemory();
long freeMemory = Runtime.getRuntime().freeMemory();