test/gc/g1/TestDeferredRSUpdate.java

Print this page
rev 6796 : [mq]: 8052170-fix-crash-with-deferredrsupdate

@@ -21,11 +21,11 @@
  * questions.
  */
 
 /*
  * @test TestDeferredRSUpdate
- * @bug 8040977
+ * @bug 8040977 8052170
  * @summary Ensure that running with -XX:-G1DeferredRSUpdate does not crash the VM
  * @key gc
  * @library /testlibrary
  */
 

@@ -36,10 +36,11 @@
   public static void main(String[] args) throws Exception {
     GCTest.main(args);
 
     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:+UseG1GC",
                                                               "-Xmx10M",
+                                                              "-XX:+PrintGCDetails",
                                                               // G1DeferredRSUpdate is a develop option, but we cannot limit execution of this test to only debug VMs.
                                                               "-XX:+IgnoreUnrecognizedVMOptions",
                                                               "-XX:-G1DeferredRSUpdate",
                                                               GCTest.class.getName());