pub(crate) mod mock_test_prelude {
pub use crate::memory_manager;
pub use crate::util::test_util::fixtures::*;
pub use crate::util::test_util::mock_method::*;
pub use crate::util::test_util::mock_vm::*;
pub use crate::vm::*;
}
mod mock_test_allocate_align_offset;
mod mock_test_allocate_no_gc_oom_on_acquire_allow_oom_call;
mod mock_test_allocate_no_gc_oom_on_acquire_no_oom_call;
mod mock_test_allocate_no_gc_simple;
mod mock_test_allocate_nonmoving;
mod mock_test_allocate_overcommit;
mod mock_test_allocate_with_disable_collection;
mod mock_test_allocate_with_initialize_collection;
mod mock_test_allocate_with_re_enable_collection;
mod mock_test_allocate_without_initialize_collection;
mod mock_test_allocator_info;
mod mock_test_barrier_slow_path_assertion;
#[cfg(feature = "is_mmtk_object")]
mod mock_test_conservatism;
mod mock_test_debug_get_object_info;
#[cfg(target_os = "linux")]
mod mock_test_handle_mmap_conflict;
mod mock_test_handle_mmap_oom;
#[cfg(feature = "vo_bit")]
mod mock_test_heap_traversal;
mod mock_test_init_fork;
#[cfg(feature = "is_mmtk_object")]
mod mock_test_internal_ptr_before_object_ref;
#[cfg(feature = "is_mmtk_object")]
mod mock_test_internal_ptr_invalid;
#[cfg(feature = "is_mmtk_object")]
mod mock_test_internal_ptr_large_object_multi_page;
#[cfg(feature = "is_mmtk_object")]
mod mock_test_internal_ptr_large_object_same_page;
#[cfg(feature = "is_mmtk_object")]
mod mock_test_internal_ptr_normal_object;
mod mock_test_is_in_mmtk_spaces;
mod mock_test_issue139_allocate_non_multiple_of_min_alignment;
mod mock_test_issue867_allocate_unrealistically_large_object;
#[cfg(feature = "malloc_counted_size")]
mod mock_test_malloc_counted;
mod mock_test_malloc_ms;
#[cfg(all(target_pointer_width = "64", feature = "vm_space"))]
mod mock_test_mmtk_julia_pr_143;
#[cfg(feature = "nogc_lock_free")]
mod mock_test_nogc_lock_free;
mod mock_test_slots;
#[cfg(target_pointer_width = "64")]
mod mock_test_vm_layout_compressed_pointer;
mod mock_test_vm_layout_default;
mod mock_test_vm_layout_heap_start;
mod mock_test_vm_layout_log_address_space;
mod mock_test_doc_avoid_resolving_allocator;
mod mock_test_doc_mutator_storage;
mod mock_test_doc_weakref_code_example;