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
Notes: sideshowbarker 2024-07-18 17:38:51 +09:00

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()