< prev index next >

test/hotspot/jtreg/vmTestbase/metaspace/shrink_grow/ShrinkGrowTest/ShrinkGrowTest.java

Print this page


   1 /*
   2  * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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 /*
  26  * @test
  27  *

  28  * @summary converted from VM Testbase metaspace/shrink_grow/ShrinkGrowTest.
  29  *
  30  * @requires vm.opt.final.ClassUnloading
  31  * @library /vmTestbase /test/lib
  32  * @run driver jdk.test.lib.FileInstaller . .
  33  * @run main/othervm
  34  *      -XX:MetaspaceSize=10m
  35  *      -XX:MaxMetaspaceSize=20m
  36  *      -Xlog:gc*:gc.log
  37  *      metaspace.shrink_grow.ShrinkGrowTest.ShrinkGrowTest
  38  */
  39 
  40 package metaspace.shrink_grow.ShrinkGrowTest;
  41 
  42 import java.lang.reflect.InvocationHandler;
  43 import java.lang.reflect.Method;
  44 import java.lang.reflect.Proxy;
  45 import java.lang.management.ManagementFactory;
  46 import java.lang.management.MemoryPoolMXBean;
  47 import java.net.URL;


   1 /*
   2  * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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 /*
  26  * @test
  27  *
  28  * @bug 8217432
  29  * @summary converted from VM Testbase metaspace/shrink_grow/ShrinkGrowTest.
  30  *
  31  * @requires vm.opt.final.ClassUnloading
  32  * @library /vmTestbase /test/lib
  33  * @run driver jdk.test.lib.FileInstaller . .
  34  * @run main/othervm
  35  *      -XX:MetaspaceSize=10m
  36  *      -XX:MaxMetaspaceSize=20m
  37  *      -Xlog:gc*:gc.log
  38  *      metaspace.shrink_grow.ShrinkGrowTest.ShrinkGrowTest
  39  */
  40 
  41 package metaspace.shrink_grow.ShrinkGrowTest;
  42 
  43 import java.lang.reflect.InvocationHandler;
  44 import java.lang.reflect.Method;
  45 import java.lang.reflect.Proxy;
  46 import java.lang.management.ManagementFactory;
  47 import java.lang.management.MemoryPoolMXBean;
  48 import java.net.URL;


< prev index next >