summaryrefslogtreecommitdiff
path: root/libc/cmake/modules/LLVMLibCTestRules.cmake
diff options
context:
space:
mode:
authorSiva Chandra Reddy <sivachandra@google.com>2022-10-11 00:38:29 +0000
committerSiva Chandra Reddy <sivachandra@google.com>2022-10-13 18:47:47 +0000
commit02a543db66518b93b126feed43080feca0b14bd2 (patch)
treeb461c9778fbcd57ae16b5437141dbbeb6c147423 /libc/cmake/modules/LLVMLibCTestRules.cmake
parentdde9db5f9313b4c63cd1c9a28d122dd5d9901737 (diff)
downloadllvm-02a543db66518b93b126feed43080feca0b14bd2.tar.gz
[libc] Add a simple implementation of the posix_spawn function.
The implementation currently ignores all spawn attributes. Support for them will be added in future changes. A simple allocator for integration tests has been added so that the integration test for posix_spawn can use the posix_spawn_file_actions_add* functions. Reviewed By: michaelrj Differential Revision: https://reviews.llvm.org/D135752
Diffstat (limited to 'libc/cmake/modules/LLVMLibCTestRules.cmake')
-rw-r--r--libc/cmake/modules/LLVMLibCTestRules.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/cmake/modules/LLVMLibCTestRules.cmake b/libc/cmake/modules/LLVMLibCTestRules.cmake
index f4f0a70a51b6..131bbad7c9c6 100644
--- a/libc/cmake/modules/LLVMLibCTestRules.cmake
+++ b/libc/cmake/modules/LLVMLibCTestRules.cmake
@@ -432,7 +432,8 @@ function(add_integration_test test_name)
libc.src.__support.threads.thread
libc.src.stdlib.atexit
libc.src.stdlib.exit
- libc.src.unistd.environ)
+ libc.src.unistd.environ
+ libc.utils.IntegrationTest.test)
list(REMOVE_DUPLICATES fq_deps_list)
# We don't want memory functions to be dependencies on integration tests.