< prev index next >

test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithParallelOld.java

Print this page
rev 57430 : [mq]: 8235907-fix-tests-using-paralleloldgc


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.event.gc.objectcount;
  27 import jdk.test.lib.jfr.GCHelper;
  28 
  29 /**
  30  * @test
  31  * @key jfr
  32  * @requires vm.hasJFR
  33  * @requires vm.gc == "Parallel" | vm.gc == null
  34  * @library /test/lib /test/jdk
  35  * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:-UseFastUnorderedTimeStamps -XX:+UseParallelGC -XX:+UseParallelOldGC -XX:MarkSweepDeadRatio=0 -XX:-UseCompressedOops -XX:+IgnoreUnrecognizedVMOptions jdk.jfr.event.gc.objectcount.TestObjectCountAfterGCEventWithParallelOld
  36  */
  37 public class TestObjectCountAfterGCEventWithParallelOld {
  38     public static void main(String[] args) throws Exception {
  39         ObjectCountAfterGCEvent.test(GCHelper.gcParallelOld);
  40     }
  41 }


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.event.gc.objectcount;
  27 import jdk.test.lib.jfr.GCHelper;
  28 
  29 /**
  30  * @test
  31  * @key jfr
  32  * @requires vm.hasJFR
  33  * @requires vm.gc == "Parallel" | vm.gc == null
  34  * @library /test/lib /test/jdk
  35  * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:-UseFastUnorderedTimeStamps -XX:+UseParallelGC -XX:MarkSweepDeadRatio=0 -XX:-UseCompressedOops -XX:+IgnoreUnrecognizedVMOptions jdk.jfr.event.gc.objectcount.TestObjectCountAfterGCEventWithParallelOld
  36  */
  37 public class TestObjectCountAfterGCEventWithParallelOld {
  38     public static void main(String[] args) throws Exception {
  39         ObjectCountAfterGCEvent.test(GCHelper.gcParallelOld);
  40     }
  41 }
< prev index next >