--- old/test/hotspot/jtreg/gc/g1/TestGCLogMessages.java 2020-07-03 17:41:25.211463167 +0200 +++ new/test/hotspot/jtreg/gc/g1/TestGCLogMessages.java 2020-07-03 17:41:25.099461540 +0200 @@ -187,7 +187,7 @@ new TestGCLogMessages().testNormalLogs(); new TestGCLogMessages().testConcurrentRefinementLogs(); new TestGCLogMessages().testWithToSpaceExhaustionLogs(); - new TestGCLogMessages().testWithInitialMark(); + new TestGCLogMessages().testWithConcurrentStart(); new TestGCLogMessages().testExpandHeap(); } @@ -266,14 +266,14 @@ output.shouldHaveExitValue(0); } - private void testWithInitialMark() throws Exception { + private void testWithConcurrentStart() throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC", "-Xmx10M", "-Xbootclasspath/a:.", "-Xlog:gc*=debug", "-XX:+UnlockDiagnosticVMOptions", "-XX:+WhiteBoxAPI", - GCTestWithInitialMark.class.getName()); + GCTestWithConcurrentStart.class.getName()); OutputAnalyzer output = new OutputAnalyzer(pb.start()); output.shouldContain("Clear Claimed Marks"); @@ -323,7 +323,7 @@ } } - static class GCTestWithInitialMark { + static class GCTestWithConcurrentStart { public static void main(String [] args) { sun.hotspot.WhiteBox WB = sun.hotspot.WhiteBox.getWhiteBox(); WB.g1StartConcMarkCycle();