diff -r f0312c7d5b37 -r ba6c248cae19 test/hotspot/jtreg/gc/logging/TestGCId.java --- a/test/hotspot/jtreg/gc/logging/TestGCId.java Wed Nov 13 11:21:15 2019 +0100 +++ b/test/hotspot/jtreg/gc/logging/TestGCId.java Wed Nov 13 11:37:29 2019 +0100 @@ -53,10 +53,6 @@ noneGCSupported = false; testGCId("UseG1GC"); } - if (GC.ConcMarkSweep.isSupported()) { - noneGCSupported = false; - testGCId("UseConcMarkSweepGC"); - } if (GC.Serial.isSupported()) { noneGCSupported = false; testGCId("UseSerialGC"); @@ -67,7 +63,7 @@ } if (noneGCSupported) { - throw new SkippedException("Skipping test because none of Parallel/G1/ConcMarkSweep/Serial/Shenandoah is supported."); + throw new SkippedException("Skipping test because none of Parallel/G1/Serial/Shenandoah is supported."); } }