[PATCH] D23192: [test-suite] Disable AArch64 tests for OSX arm64 to fix green dragon.
Alina Sbirlea via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 5 06:12:57 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL277815: [test-suite] Disable AArch64 tests for OSX arm64 to fix green dragon. (authored by asbirlea).
Changed prior to commit:
https://reviews.llvm.org/D23192?vs=66904&id=66935#toc
Repository:
rL LLVM
https://reviews.llvm.org/D23192
Files:
test-suite/trunk/Bitcode/CMakeLists.txt
Index: test-suite/trunk/Bitcode/CMakeLists.txt
===================================================================
--- test-suite/trunk/Bitcode/CMakeLists.txt
+++ test-suite/trunk/Bitcode/CMakeLists.txt
@@ -11,7 +11,10 @@
if(NOT TEST_SUITE_BENCHMARKING_ONLY)
llvm_add_subdirectories(Regression)
if(ARCH STREQUAL "x86" OR ARCH STREQUAL "AArch64" OR ARCH STREQUAL "ARM")
- llvm_add_subdirectories(simd_ops)
+ #FIXME: Disable AArch64 tests until clarifying why the halide runtime is not linked on green dragon
+ if (NOT CMAKE_OSX_ARCHITECTURES STREQUAL "arm64")
+ llvm_add_subdirectories(simd_ops)
+ endif()
endif()
endif()
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23192.66935.patch
Type: text/x-patch
Size: 678 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160805/cc7d1950/attachment.bin>
More information about the llvm-commits
mailing list