[libc] make the scudo integration test run

adds a custom command for libc-scudo-integration-test that makes it run
when it is built.

Reviewed By: sivachandra

Differential Revision: https://reviews.llvm.org/D108409
This commit is contained in:
Michael Jones 2021-08-19 21:07:46 +00:00
parent d7df812740
commit 6ce6fa4ad4
1 changed files with 6 additions and 0 deletions

View File

@ -37,3 +37,9 @@ target_link_libraries(libc-gwp-asan-uaf-should-crash
PRIVATE
llvmlibc
)
add_custom_command(TARGET libc-scudo-integration-test
POST_BUILD
COMMAND $<TARGET_FILE:libc-scudo-integration-test>
COMMENT "Run the test after it is built."
VERBATIM)