summaryrefslogtreecommitdiff
path: root/lib/interception
diff options
context:
space:
mode:
authorEtienne Bergeron <etienneb@google.com>2016-07-06 20:15:50 +0000
committerEtienne Bergeron <etienneb@google.com>2016-07-06 20:15:50 +0000
commit36c88f5770dff4421061e8327a96be5cd245bc49 (patch)
tree4ed96c38c0244c5603e712cf9d4b0f94d2556756 /lib/interception
parent2e7ce1320a05dbfa3360f16a914cc4a182e5dca3 (diff)
[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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@274667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/interception')
-rw-r--r--lib/interception/tests/CMakeLists.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/interception/tests/CMakeLists.txt b/lib/interception/tests/CMakeLists.txt
index 71e9f9d08..d77b6763a 100644
--- a/lib/interception/tests/CMakeLists.txt
+++ b/lib/interception/tests/CMakeLists.txt
@@ -127,7 +127,7 @@ macro(add_interception_tests_for_arch arch)
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 ANDROID)
add_interception_tests_for_arch(${arch})
endforeach()
endif()
-
-