tests: Remove HandleSpecialMapping test for DSP region

Memory::GetPhysicalPointer for the DSP region requires a valid
Core::System::dsp_core.
This commit is contained in:
MerryMage 2017-12-20 19:26:09 +00:00
parent ab3d53131a
commit 7c7fddd7bd
1 changed files with 0 additions and 6 deletions

View File

@ -39,12 +39,6 @@ TEST_CASE("Memory::IsValidVirtualAddress", "[core][memory]") {
process->vm_manager, {Memory::IO_AREA_VADDR, Memory::IO_AREA_SIZE, false, false});
CHECK_FALSE(Memory::IsValidVirtualAddress(*process, Memory::IO_AREA_VADDR) == true);
}
SECTION("DSP") {
Kernel::HandleSpecialMapping(
process->vm_manager, {Memory::DSP_RAM_VADDR, Memory::DSP_RAM_SIZE, false, false});
CHECK(Memory::IsValidVirtualAddress(*process, Memory::DSP_RAM_VADDR) == true);
}
}
SECTION("Unmapping a VAddr should make it invalid") {