< prev index next >

test/gc/parallel/TestDynShrinkHeap.java

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test TestDynShrinkHeap
  26  * @bug 8016479
  27  * @requires vm.gc.Parallel
  28  * @summary Verify that the heap shrinks after full GC according to the current values of the Min/MaxHeapFreeRatio flags
  29  * @modules java.base/jdk.internal.misc
  30  * @modules jdk.management
  31  * @library /testlibrary
  32  * @run main/othervm -XX:+UseAdaptiveSizePolicyWithSystemGC -XX:+UseParallelGC -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 -Xmx1g -verbose:gc TestDynShrinkHeap
  33  */
  34 import jdk.test.lib.DynamicVMOption;
  35 import java.lang.management.ManagementFactory;
  36 import java.lang.management.MemoryUsage;
  37 import java.util.ArrayList;
  38 import static jdk.test.lib.Asserts.assertLessThan;
  39 import com.sun.management.HotSpotDiagnosticMXBean;
  40 
  41 public class TestDynShrinkHeap {
  42 
  43     public static final String MIN_FREE_RATIO_FLAG_NAME = "MinHeapFreeRatio";
  44     public static final String MAX_FREE_RATIO_FLAG_NAME = "MaxHeapFreeRatio";
  45 
  46     private static ArrayList<byte[]> list = new ArrayList<>(0);
  47     private static final int LEN = 512 * 1024 + 1;
  48 
  49     public TestDynShrinkHeap() {
  50     }
  51 




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test TestDynShrinkHeap
  26  * @bug 8016479
  27  * @requires vm.gc.Parallel
  28  * @summary Verify that the heap shrinks after full GC according to the current values of the Min/MaxHeapFreeRatio flags
  29  * @modules java.base/jdk.internal.misc
  30  * @modules jdk.management
  31  * @library /test/lib
  32  * @run main/othervm -XX:+UseAdaptiveSizePolicyWithSystemGC -XX:+UseParallelGC -XX:MinHeapFreeRatio=0 -XX:MaxHeapFreeRatio=100 -Xmx1g -verbose:gc TestDynShrinkHeap
  33  */
  34 import jdk.test.lib.DynamicVMOption;
  35 import java.lang.management.ManagementFactory;
  36 import java.lang.management.MemoryUsage;
  37 import java.util.ArrayList;
  38 import static jdk.test.lib.Asserts.assertLessThan;
  39 import com.sun.management.HotSpotDiagnosticMXBean;
  40 
  41 public class TestDynShrinkHeap {
  42 
  43     public static final String MIN_FREE_RATIO_FLAG_NAME = "MinHeapFreeRatio";
  44     public static final String MAX_FREE_RATIO_FLAG_NAME = "MaxHeapFreeRatio";
  45 
  46     private static ArrayList<byte[]> list = new ArrayList<>(0);
  47     private static final int LEN = 512 * 1024 + 1;
  48 
  49     public TestDynShrinkHeap() {
  50     }
  51 


< prev index next >