summaryrefslogtreecommitdiff
path: root/unittests/ExecutionEngine/Makefile
diff options
context:
space:
mode:
authorJyotsna Verma <jverma@codeaurora.org>2013-03-28 03:38:29 +0000
committerJyotsna Verma <jverma@codeaurora.org>2013-03-28 03:38:29 +0000
commit9f41d224679a6b246a583b5dbb3a50635f4ff517 (patch)
tree563a992f9b5c3c78e15e69ec59c8ce7defeb6ea8 /unittests/ExecutionEngine/Makefile
parentd957f957eee12cf26a7160e6015f0a7c2629904f (diff)
downloadllvm-9f41d224679a6b246a583b5dbb3a50635f4ff517.tar.gz
llvm-9f41d224679a6b246a583b5dbb3a50635f4ff517.tar.bz2
llvm-9f41d224679a6b246a583b5dbb3a50635f4ff517.tar.xz
Disable JIT/MCJIT tests in unittests/ExecutionEngine for the targets that don't support JIT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178221 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine/Makefile')
-rw-r--r--unittests/ExecutionEngine/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/Makefile b/unittests/ExecutionEngine/Makefile
index ca1195631a..c779a6a47c 100644
--- a/unittests/ExecutionEngine/Makefile
+++ b/unittests/ExecutionEngine/Makefile
@@ -10,7 +10,10 @@
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