Disable JIT/MCJIT tests in unittests/ExecutionEngine for the targets that don't suppo...
authorJyotsna Verma <jverma@codeaurora.org>
Thu, 28 Mar 2013 03:38:29 +0000 (03:38 +0000)
committerJyotsna Verma <jverma@codeaurora.org>
Thu, 28 Mar 2013 03:38:29 +0000 (03:38 +0000)
llvm-svn: 178221

llvm/unittests/ExecutionEngine/CMakeLists.txt
llvm/unittests/ExecutionEngine/Makefile

index ed7f10a..4eefc1e 100644 (file)
@@ -6,5 +6,9 @@ add_llvm_unittest(ExecutionEngineTests
   ExecutionEngineTest.cpp
   )
 
-add_subdirectory(JIT)
-add_subdirectory(MCJIT)
+# Include JIT/MCJIT tests only if native arch is a JIT target.
+list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" have_jit)
+if (NOT have_jit EQUAL -1 )
+  add_subdirectory(JIT)
+  add_subdirectory(MCJIT)
+endif()
index ca11956..c779a6a 100644 (file)
 LEVEL = ../..
 TESTNAME = ExecutionEngine
 LINK_COMPONENTS :=interpreter
-PARALLEL_DIRS = JIT MCJIT
+
+ifeq ($(TARGET_HAS_JIT),1)
+       PARALLEL_DIRS = JIT MCJIT
+endif
 
 include $(LEVEL)/Makefile.config
 include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest