mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 09:37:45 +00:00
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
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)
|
serenity_test("crash.cpp" Kernel MAIN_ALREADY_DEFINED)
|
||||||
|
|
||||||
set(LIBTEST_BASED_SOURCES
|
set(LIBTEST_BASED_SOURCES
|
||||||
TestEFault.cpp
|
|
||||||
TestEmptyPrivateInodeVMObject.cpp
|
TestEmptyPrivateInodeVMObject.cpp
|
||||||
TestEmptySharedInodeVMObject.cpp
|
TestEmptySharedInodeVMObject.cpp
|
||||||
TestInvalidUIDSet.cpp
|
TestInvalidUIDSet.cpp
|
||||||
|
@ -58,6 +57,10 @@ set(LIBTEST_BASED_SOURCES
|
||||||
TestSigWait.cpp
|
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)
|
foreach(libtest_source IN LISTS LIBTEST_BASED_SOURCES)
|
||||||
serenity_test("${libtest_source}" Kernel)
|
serenity_test("${libtest_source}" Kernel)
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue