Tests/Kernel: Do not build TestEFault on AArch64
This test currently causes a kernel panic, as we do not handle SafeMem
exceptions correctly (beb55f726f
).
This commit is contained in:
parent
2a2787b199
commit
65a97ad503
Notes:
sideshowbarker
2024-07-17 05:58:46 +09:00
Author: https://github.com/BertalanD Commit: https://github.com/SerenityOS/serenity/commit/65a97ad503 Pull-request: https://github.com/SerenityOS/serenity/pull/19059 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/gmta ✅
1 changed files with 4 additions and 1 deletions
|
@ -38,7 +38,6 @@ target_link_libraries(fuzz-syscalls PRIVATE LibSystem)
|
|||
serenity_test("crash.cpp" Kernel MAIN_ALREADY_DEFINED)
|
||||
|
||||
set(LIBTEST_BASED_SOURCES
|
||||
TestEFault.cpp
|
||||
TestEmptyPrivateInodeVMObject.cpp
|
||||
TestEmptySharedInodeVMObject.cpp
|
||||
TestInvalidUIDSet.cpp
|
||||
|
@ -58,6 +57,10 @@ set(LIBTEST_BASED_SOURCES
|
|||
TestSigWait.cpp
|
||||
)
|
||||
|
||||
if (NOT CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64")
|
||||
list(APPEND LIBTEST_BASED_SOURCES TestEFault.cpp)
|
||||
endif()
|
||||
|
||||
foreach(libtest_source IN LISTS LIBTEST_BASED_SOURCES)
|
||||
serenity_test("${libtest_source}" Kernel)
|
||||
endforeach()
|
||||
|
|
Loading…
Add table
Reference in a new issue