diff -r badf4244ceae -r 4c84d351cca9 src/share/vm/prims/jni.cpp --- a/src/share/vm/prims/jni.cpp Sun Aug 25 21:21:18 2013 -0400 +++ b/src/share/vm/prims/jni.cpp Fri Aug 16 13:22:32 2013 +0200 @@ -5027,9 +5027,15 @@ tty->print_cr("Running test: " #unit_test_function_call); \ unit_test_function_call +// Forward declaration +void TestReservedSpace_test(); +void TestReserveMemorySpecial_test(); + void execute_internal_vm_tests() { if (ExecuteInternalVMTests) { tty->print_cr("Running internal VM tests"); + run_unit_test(TestReservedSpace_test()); + run_unit_test(TestReserveMemorySpecial_test()); run_unit_test(GlobalDefinitions::test_globals()); run_unit_test(GCTimerAllTest::all()); run_unit_test(arrayOopDesc::test_max_array_length());