mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
fd0dbd1ebf
With the goal of centralizing all tests in the system, this is a first step to establish a Tests sub-tree. It will contain all of the unit tests and test harnesses for the various components in the system.
24 lines
989 B
CMake
24 lines
989 B
CMake
file(GLOB CMD_SOURCES CONFIGURE_DEPENDS "*.cpp")
|
|
file(GLOB LIBTEST_BASED_SOURCES "Test*.cpp")
|
|
list(REMOVE_ITEM CMD_SOURCES ${LIBTEST_BASED_SOURCES})
|
|
|
|
# FIXME: These tests do not use LibTest
|
|
foreach(CMD_SRC ${CMD_SOURCES})
|
|
get_filename_component(CMD_NAME ${CMD_SRC} NAME_WE)
|
|
add_executable(${CMD_NAME} ${CMD_SRC})
|
|
target_link_libraries(${CMD_NAME} LibCore)
|
|
install(TARGETS ${CMD_NAME} RUNTIME DESTINATION usr/Tests/Kernel)
|
|
endforeach()
|
|
|
|
|
|
foreach(TEST_SRC ${LIBTEST_BASED_SOURCES})
|
|
serenity_test(${TEST_SRC} Kernel)
|
|
endforeach()
|
|
|
|
target_link_libraries(elf-execve-mmap-race LibPthread)
|
|
target_link_libraries(kill-pidtid-confusion LibPthread)
|
|
target_link_libraries(nanosleep-race-outbuf-munmap LibPthread)
|
|
target_link_libraries(null-deref-close-during-select LibPthread)
|
|
target_link_libraries(null-deref-crash-during-pthread_join LibPthread)
|
|
target_link_libraries(uaf-close-while-blocked-in-read LibPthread)
|
|
target_link_libraries(pthread-cond-timedwait-example LibPthread)
|