< prev index next >

test/gc/g1/TestHumongousAllocInitialMark.java

Print this page
rev 7563 : 8067941: [TESTBUG] Fix tests for OS with 64K page size.

*** 29,39 **** */ import com.oracle.java.testlibrary.*; public class TestHumongousAllocInitialMark { ! private static final int heapSize = 200; // MB private static final int heapRegionSize = 1; // MB private static final int initiatingHeapOccupancyPercent = 50; // % public static void main(String[] args) throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( --- 29,41 ---- */ import com.oracle.java.testlibrary.*; public class TestHumongousAllocInitialMark { ! // Heap sizes < 224 MB are increased to 224 MB if vm_page_size == 64K to ! // fulfill alignment constraints. ! private static final int heapSize = 224; // MB private static final int heapRegionSize = 1; // MB private static final int initiatingHeapOccupancyPercent = 50; // % public static void main(String[] args) throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
< prev index next >