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()