[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
Thu Aug 4 22:23:26 PDT 2016


asbirlea created this revision.
asbirlea added reviewers: MatzeB, cmatthews, mehdi_amini.
asbirlea added a subscriber: llvm-commits.
Herald added subscribers: samparker, rengolin, aemerson.

On OSX-arm64, the halide runtime is not properly linked in with
the simd_ops tests leading to missing symbols.
Temporary disable tests for OSX-arm64 to make green dragon green again.

https://reviews.llvm.org/D23192

Files:
  Bitcode/CMakeLists.txt

Index: Bitcode/CMakeLists.txt
===================================================================
--- Bitcode/CMakeLists.txt
+++ 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.66904.patch
Type: text/x-patch
Size: 627 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160805/8f6a9a0a/attachment.bin>


More information about the llvm-commits mailing list