hotspot/test/gc/arguments/TestInitialTenuringThreshold.java
changeset 33144 c56850e328fc
parent 32613 73bec9f941d7
child 35488 bca41d0c2a15
--- a/hotspot/test/gc/arguments/TestInitialTenuringThreshold.java	Thu Oct 08 12:47:17 2015 +0200
+++ b/hotspot/test/gc/arguments/TestInitialTenuringThreshold.java	Mon Oct 05 14:56:19 2015 -0700
@@ -25,6 +25,7 @@
  * @test TestInitialTenuringThreshold
  * @key gc
  * @bug 8014765
+ * @requires vm.gc=="Parallel"
  * @summary Tests argument processing for initial tenuring threshold
  * @library /testlibrary
  * @modules java.base/sun.misc
@@ -39,6 +40,7 @@
 
   public static void runWithThresholds(int initial, int max, boolean shouldfail) throws Exception {
     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
+      "-XX:+UseParallelGC",
       "-XX:InitialTenuringThreshold=" + String.valueOf(initial),
       "-XX:MaxTenuringThreshold=" + String.valueOf(max),
       "-version"