[libc-commits] [PATCH] D108409: [libc] make the scudo integration test run
Michael Jones via Phabricator via libc-commits
libc-commits at lists.llvm.org
Thu Aug 19 14:09:09 PDT 2021
michaelrj created this revision.
michaelrj added a reviewer: sivachandra.
Herald added subscribers: libc-commits, ecnelises, tschuett, cryptoad, mgorny.
Herald added a project: libc-project.
michaelrj requested review of this revision.
adds a custom target for libc-scudo-integration-test that makes it run
when it is built.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D108409
Files:
libc/test/integration/scudo/CMakeLists.txt
Index: libc/test/integration/scudo/CMakeLists.txt
===================================================================
--- libc/test/integration/scudo/CMakeLists.txt
+++ libc/test/integration/scudo/CMakeLists.txt
@@ -37,3 +37,9 @@
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)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108409.367610.patch
Type: text/x-patch
Size: 508 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210819/f0431f21/attachment.bin>
More information about the libc-commits
mailing list