[test-suite] r281751 - Re-enable AArch64 tests for OSX arm64.

Alina Sbirlea via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 16 10:14:11 PDT 2016


Author: asbirlea
Date: Fri Sep 16 12:14:11 2016
New Revision: 281751

URL: http://llvm.org/viewvc/llvm-project?rev=281751&view=rev
Log:
Re-enable AArch64 tests for OSX arm64.
Green dragon should no longer fail (fix landed a while back). To revert if failure persists.

Modified:
    test-suite/trunk/Bitcode/CMakeLists.txt

Modified: test-suite/trunk/Bitcode/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Bitcode/CMakeLists.txt?rev=281751&r1=281750&r2=281751&view=diff
==============================================================================
--- test-suite/trunk/Bitcode/CMakeLists.txt (original)
+++ test-suite/trunk/Bitcode/CMakeLists.txt Fri Sep 16 12:14:11 2016
@@ -12,10 +12,7 @@ if(TEST_SUITE_ENABLE_BITCODE_TESTS)
   if(NOT TEST_SUITE_BENCHMARKING_ONLY)
     llvm_add_subdirectories(Regression)
     if(ARCH STREQUAL "x86" OR ARCH STREQUAL "AArch64" OR ARCH STREQUAL "ARM")
-      #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()
+      llvm_add_subdirectories(simd_ops)
     endif()
   endif()
 endif()




More information about the llvm-commits mailing list