test/hotspot/jtreg/serviceability/sa/TestUniverse.java
changeset 59053 ba6c248cae19
parent 58497 b0a731a6642b
--- a/test/hotspot/jtreg/serviceability/sa/TestUniverse.java	Wed Nov 13 11:21:15 2019 +0100
+++ b/test/hotspot/jtreg/serviceability/sa/TestUniverse.java	Wed Nov 13 11:37:29 2019 +0100
@@ -63,10 +63,6 @@
             expStrings.add("eden");
             break;
 
-        case ConcMarkSweep:
-            expStrings.add("Gen 1: concurrent mark-sweep generation");
-            break;
-
         case G1:
             expStrings.add("garbage-first heap");
             expStrings.add("region size");
@@ -112,7 +108,7 @@
         }
 
         if (Compiler.isGraalEnabled()) {
-            if (gc == GC.ConcMarkSweep || gc == GC.Epsilon || gc == GC.Z || gc == GC.Shenandoah) {
+            if (gc == GC.Epsilon || gc == GC.Z || gc == GC.Shenandoah) {
                 // Not supported
                 System.out.println ("Skipped testing of " + gc + "GC, not supported by Graal");
                 return false;