[libc-commits] [PATCH] D104816: [libc] Add a new suite called "libc-long-running-tests".

Siva Chandra via Phabricator via libc-commits libc-commits at lists.llvm.org
Fri Aug 20 22:02:07 PDT 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rG5e147d3058a0: [libc] Add a new suite called "libc-long-running-tests". (authored by sivachandra).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D104816/new/

https://reviews.llvm.org/D104816

Files:
  libc/cmake/modules/LLVMLibCTestRules.cmake
  libc/test/CMakeLists.txt


Index: libc/test/CMakeLists.txt
===================================================================
--- libc/test/CMakeLists.txt
+++ libc/test/CMakeLists.txt
@@ -9,6 +9,7 @@
 add_dependencies(check-libc check-llvmlibc)
 
 add_custom_target(exhaustive-check-libc)
+add_custom_target(libc-long-running-tests)
 
 add_subdirectory(src)
 add_subdirectory(utils)
Index: libc/cmake/modules/LLVMLibCTestRules.cmake
===================================================================
--- libc/cmake/modules/LLVMLibCTestRules.cmake
+++ libc/cmake/modules/LLVMLibCTestRules.cmake
@@ -178,6 +178,11 @@
   add_dependencies(exhaustive-check-libc ${suite_name})
 endfunction(add_libc_exhaustive_testsuite)
 
+function(add_libc_long_running_testsuite suite_name)
+  add_custom_target(${suite_name})
+  add_dependencies(libc-long-running-tests ${suite_name})
+endfunction(add_libc_long_running_testsuite)
+
 # Rule to add a fuzzer test.
 # Usage
 #    add_libc_fuzzer(


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104816.367941.patch
Type: text/x-patch
Size: 952 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210821/08724e8a/attachment-0001.bin>


More information about the libc-commits mailing list