test/hotspot/jtreg/gc/arguments/TestParallelRefProc.java
changeset 59053 ba6c248cae19
parent 55610 47fdb5b0fa41
--- a/test/hotspot/jtreg/gc/arguments/TestParallelRefProc.java	Wed Nov 13 11:21:15 2019 +0100
+++ b/test/hotspot/jtreg/gc/arguments/TestParallelRefProc.java	Wed Nov 13 11:37:29 2019 +0100
@@ -51,10 +51,6 @@
             noneGCSupported = false;
             testFlag(new String[] { "-XX:+UseSerialGC" }, false);
         }
-        if (GC.ConcMarkSweep.isSupported()) {
-            noneGCSupported = false;
-            testFlag(new String[] { "-XX:+UseConcMarkSweepGC" }, false);
-        }
         if (GC.Parallel.isSupported()) {
             noneGCSupported = false;
             testFlag(new String[] { "-XX:+UseParallelGC" }, false);
@@ -66,7 +62,7 @@
             testFlag(new String[] { "-XX:+UseG1GC", "-XX:-ParallelRefProcEnabled", "-XX:ParallelGCThreads=2" }, false);
         }
         if (noneGCSupported) {
-            throw new SkippedException("Skipping test because none of Serial/ConcMarkSweep/Parallel/G1 is supported.");
+            throw new SkippedException("Skipping test because none of Serial/Parallel/G1 is supported.");
         }
     }