hotspot/src/share/vm/prims/jni.cpp
changeset 17631 17992863b0ab
parent 16670 4af09aff4237
child 18025 b7bcf7497f93
--- a/hotspot/src/share/vm/prims/jni.cpp	Tue May 21 10:39:09 2013 +0200
+++ b/hotspot/src/share/vm/prims/jni.cpp	Tue May 21 11:30:14 2013 +0200
@@ -5015,6 +5015,9 @@
 #ifndef PRODUCT
 
 #include "gc_interface/collectedHeap.hpp"
+#if INCLUDE_ALL_GCS
+#include "gc_implementation/g1/heapRegionRemSet.hpp"
+#endif
 #include "utilities/quickSort.hpp"
 #if INCLUDE_VM_STRUCTS
 #include "runtime/vmStructs.hpp"
@@ -5035,6 +5038,9 @@
 #if INCLUDE_VM_STRUCTS
     run_unit_test(VMStructs::test());
 #endif
+#if INCLUDE_ALL_GCS
+    run_unit_test(HeapRegionRemSet::test_prt());
+#endif
     tty->print_cr("All internal VM tests passed");
   }
 }