summaryrefslogtreecommitdiff
path: root/Tests
diff options
context:
space:
mode:
authorAndrew Kaster <andrewdkaster@gmail.com>2021-05-21 00:46:51 -0600
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-05-21 12:05:34 +0430
commit7e905ea2015adef63d5d47395f6be9e749655812 (patch)
tree245e9708e7ce4222830f4e348545fcb588d130b9 /Tests
parent1822d6b8ac1875e944d1f00c712e787367bf5773 (diff)
downloadserenity-7e905ea2015adef63d5d47395f6be9e749655812.zip
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.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/Kernel/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Kernel/CMakeLists.txt b/Tests/Kernel/CMakeLists.txt
index 9c02b425ee..36c3381b0c 100644
--- a/Tests/Kernel/CMakeLists.txt
+++ b/Tests/Kernel/CMakeLists.txt
@@ -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()