< prev index next >

test/gc/g1/plab/TestPLABResize.java

Print this page
rev 10336 : [mq]: 8141141-young-and-old-gen-stats-are-similar-in-output

@@ -21,11 +21,11 @@
  * questions.
  */
 
  /*
  * @test TestPLABResize
- * @bug 8141278
+ * @bug 8141278 8141141
  * @summary Test for PLAB resizing
  * @requires vm.gc=="G1" | vm.gc=="null"
  * @requires vm.opt.FlightRecorder != true
  * @library /testlibrary /../../test/lib /
  * @modules java.management

@@ -115,11 +115,11 @@
         final ArrayList<Long> plabSizes = entries.entrySet()
                 .stream()
                 .map(item -> {
                     return item.getValue()
                             .get(LogParser.ReportType.SURVIVOR_STATS)
-                            .get("desired_plab_sz");
+                            .get("actual");
                 })
                 .collect(Collectors.toCollection(ArrayList::new));
 
         // Check that desired plab size was changed during iterations.
         // It should decrease during first half of iterations
< prev index next >