[compiler-rt] r274667 - [compiler-rt] Disable interception tests on Apple

Etienne Bergeron via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 6 13:15:50 PDT 2016


Author: etienneb
Date: Wed Jul  6 15:15:50 2016
New Revision: 274667

URL: http://llvm.org/viewvc/llvm-project?rev=274667&view=rev
Log:
[compiler-rt] Disable interception tests on Apple

Summary:
The CMake generation is not working on Apple.

This patch is disabling the generation until it's fixed.

Reviewers: rnk

Subscribers: tberghammer, chrisha, danalbert, llvm-commits, srhines

Differential Revision: http://reviews.llvm.org/D22066

Modified:
    compiler-rt/trunk/lib/interception/tests/CMakeLists.txt

Modified: compiler-rt/trunk/lib/interception/tests/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/interception/tests/CMakeLists.txt?rev=274667&r1=274666&r2=274667&view=diff
==============================================================================
--- compiler-rt/trunk/lib/interception/tests/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/interception/tests/CMakeLists.txt Wed Jul  6 15:15:50 2016
@@ -127,7 +127,7 @@ macro(add_interception_tests_for_arch ar
 
 endmacro()
 
-if(COMPILER_RT_CAN_EXECUTE_TESTS AND NOT ANDROID)
+if(COMPILER_RT_CAN_EXECUTE_TESTS AND NOT ANDROID AND NOT APPLE)
   # We use just-built clang to build interception unittests, so we must
   # be sure that produced binaries would work.
   if(APPLE)
@@ -143,5 +143,3 @@ if(COMPILER_RT_CAN_EXECUTE_TESTS AND NOT
     add_interception_tests_for_arch(${arch})
   endforeach()
 endif()
-
-




More information about the llvm-commits mailing list