[PATCH] D37350: [ubsan] Make check-ubsan depend on check-ubsan-minimal.

Evgenii Stepanov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 31 13:50:45 PDT 2017


eugenis created this revision.
Herald added a subscriber: mgorny.

This way we don't need to add check-ubsan-minimal steps to all the bots.


https://reviews.llvm.org/D37350

Files:
  compiler-rt/test/CMakeLists.txt


Index: compiler-rt/test/CMakeLists.txt
===================================================================
--- compiler-rt/test/CMakeLists.txt
+++ compiler-rt/test/CMakeLists.txt
@@ -71,6 +71,10 @@
     endforeach()
 
     compiler_rt_test_runtime(profile)
+
+    if(COMPILER_RT_HAS_UBSAN AND COMPILER_RT_HAS_UBSAN_MINIMAL)
+      add_dependencies(check-ubsan check-ubsan-minimal)
+    endif()
   endif()
   if(COMPILER_RT_BUILD_XRAY)
     compiler_rt_test_runtime(xray)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D37350.113459.patch
Type: text/x-patch
Size: 471 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170831/4bba3706/attachment.bin>


More information about the llvm-commits mailing list