[libc-commits] [PATCH] D81029: [libc] Remove integration test target from check libc.

Paula Toth via Phabricator via libc-commits libc-commits at lists.llvm.org
Tue Jun 2 13:46:23 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rGd5e0dfd50704: [libc] Remove integration test target from check libc. (authored by PaulkaToast).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D81029

Files:
  libc/test/src/CMakeLists.txt


Index: libc/test/src/CMakeLists.txt
===================================================================
--- libc/test/src/CMakeLists.txt
+++ libc/test/src/CMakeLists.txt
@@ -38,32 +38,32 @@
 )
 
 add_executable(
-  public_integration_test
+  libc-integration-test
   EXCLUDE_FROM_ALL
   ${public_test}
 )
 # Blank out default include directories to prevent accidentally including
 # system headers or our own internal headers.
 set_target_properties(
-  public_integration_test
+  libc-integration-test
   PROPERTIES
   INCLUDE_DIRECTORIES ""
 )
 # Only include we need is the include for cpp::IsSame and our generated
 # public headers.
 target_include_directories(
-  public_integration_test BEFORE
+  libc-integration-test BEFORE
   PRIVATE
     "${LIBC_SOURCE_DIR}/utils/CPP"
     "${LIBC_BUILD_DIR}/include"
 )
 target_compile_options(
-  public_integration_test
+  libc-integration-test
   PRIVATE
   -ffreestanding
 )
 target_link_options(
-  public_integration_test
+  libc-integration-test
   PRIVATE "-nostdlib"
 )
 set(library_files)
@@ -74,7 +74,7 @@
 
 if(COMPILER_RESOURCE_DIR AND LLVM_LIBC_ENABLE_LINTING)
   add_custom_target(
-    public_integration_test-tidy
+    libc-integration-test-tidy
     VERBATIM
     COMMAND $<TARGET_FILE:clang-tidy> --system-headers
       --checks=-*,llvmlibc-restrict-system-libc-headers
@@ -88,11 +88,10 @@
     DEPENDS
       clang-tidy ${public_test}
   )
-  add_dependencies(check-libc public_integration_test-tidy)
+  add_dependencies(libc-integration-test libc-integration-test-tidy)
 endif()
 
-target_link_libraries(public_integration_test
+target_link_libraries(libc-integration-test
   PRIVATE
   ${library_files}
 )
-add_dependencies(check-libc public_integration_test)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D81029.267986.patch
Type: text/x-patch
Size: 1729 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20200602/aaf55ca7/attachment.bin>


More information about the libc-commits mailing list