< prev index next >

test/hotspot/jtreg/gc/nvdimm/TestAllocateOldGenAtError.java

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

@@ -80,17 +80,17 @@
     output.shouldNotHaveExitValue(0);
 
   }
 
   private static void testParallelOld() throws Exception {
-    System.out.println("Testing ParallelOld GC with UseAdaptiveGCBoundary disabled");
-    OutputAnalyzer output = runTest("-XX:+UseParallelOldGC -XX:-UseAdaptiveGCBoundary");
+    System.out.println("Testing Parallel GC with UseAdaptiveGCBoundary disabled");
+    OutputAnalyzer output = runTest("-XX:+UseParallelGC -XX:-UseAdaptiveGCBoundary");
     output.shouldContain("Error occurred during initialization of VM");
     output.shouldNotHaveExitValue(0);
 
-    System.out.println("Testing ParallelOld GC with UseAdaptiveGCBoundary enabled");
-    output = runTest("-XX:+UseParallelOldGC -XX:+UseAdaptiveGCBoundary");
+    System.out.println("Testing Parallel GC with UseAdaptiveGCBoundary enabled");
+    output = runTest("-XX:+UseParallelGC -XX:+UseAdaptiveGCBoundary");
     output.shouldContain("Error occurred during initialization of VM");
     output.shouldNotHaveExitValue(0);
   }
 
   private static OutputAnalyzer runTest(String... extraFlags) throws Exception {
< prev index next >