< prev index next >

test/hotspot/jtreg/runtime/MemberName/MemberNameLeak.java

Print this page

        

*** 74,83 **** --- 74,84 ---- public static void test(String gc, boolean doConcurrent) throws Throwable { // Run this Leak class with logging ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( "-Xlog:membername+table=trace", + "-XX:+UnlockExperimentalVMOptions", "-XX:+UnlockDiagnosticVMOptions", "-XX:+WhiteBoxAPI", "-Xbootclasspath/a:.", doConcurrent ? "-XX:+ExplicitGCInvokesConcurrent" : "-XX:-ExplicitGCInvokesConcurrent", "-XX:+ClassUnloading",
*** 97,104 **** --- 98,107 ---- test("-XX:+UseParallelGC", false); test("-XX:+UseSerialGC", false); if (!Compiler.isGraalEnabled()) { // Graal does not support CMS test("-XX:+UseConcMarkSweepGC", false); test("-XX:+UseConcMarkSweepGC", true); + test("-XX:+UseShenandoahGC", true); + test("-XX:+UseShenandoahGC", false); } } }
< prev index next >