1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

Tests: Install non-LibTest based Kernel tests into Kernel/Legacy subdir

This makes it easier to run tests we know will work in CI, and ignore
ones that need some help to be repeatable.
This commit is contained in:
Andrew Kaster 2021-05-21 00:46:51 -06:00 committed by Ali Mohammad Pur
parent 1822d6b8ac
commit 7e905ea201

View file

@ -7,7 +7,7 @@ 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)
install(TARGETS ${CMD_NAME} RUNTIME DESTINATION usr/Tests/Kernel/Legacy)
endforeach()