< 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,31 **** * questions. */ /* * @test TestPLABResize ! * @bug 8141278 * @summary Test for PLAB resizing * @requires vm.gc=="G1" | vm.gc=="null" * @requires vm.opt.FlightRecorder != true * @library /testlibrary /../../test/lib / * @modules java.management --- 21,31 ---- * questions. */ /* * @test TestPLABResize ! * @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,125 **** final ArrayList<Long> plabSizes = entries.entrySet() .stream() .map(item -> { return item.getValue() .get(LogParser.ReportType.SURVIVOR_STATS) ! .get("desired_plab_sz"); }) .collect(Collectors.toCollection(ArrayList::new)); // Check that desired plab size was changed during iterations. // It should decrease during first half of iterations --- 115,125 ---- final ArrayList<Long> plabSizes = entries.entrySet() .stream() .map(item -> { return item.getValue() .get(LogParser.ReportType.SURVIVOR_STATS) ! .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 >