src/share/vm/prims/jni.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hs-gc-chunked-growablearray Cdiff src/share/vm/prims/jni.cpp

src/share/vm/prims/jni.cpp

Print this page

        

*** 5037,5046 **** --- 5037,5047 ---- return ret; } #ifndef PRODUCT + #include "gc_implementation/g1/g1PreserveMarkQueue.hpp" #include "gc_interface/collectedHeap.hpp" #include "utilities/quickSort.hpp" #if INCLUDE_VM_STRUCTS #include "runtime/vmStructs.hpp" #endif
*** 5054,5063 **** --- 5055,5066 ---- tty->print_cr("Running internal VM tests"); run_unit_test(arrayOopDesc::test_max_array_length()); run_unit_test(CollectedHeap::test_is_in()); run_unit_test(QuickSort::test_quick_sort()); run_unit_test(AltHashing::test_alt_hash()); + run_unit_test(g1PreserveMarkChunkTests()); + run_unit_test(g1PreserveMarkQueueTests()); #if INCLUDE_VM_STRUCTS run_unit_test(VMStructs::test()); #endif tty->print_cr("All internal VM tests passed"); }
src/share/vm/prims/jni.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File