From 9f41d224679a6b246a583b5dbb3a50635f4ff517 Mon Sep 17 00:00:00 2001 From: Jyotsna Verma Date: Thu, 28 Mar 2013 03:38:29 +0000 Subject: 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 --- unittests/ExecutionEngine/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'unittests/ExecutionEngine/Makefile') 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 -- cgit v1.2.3-18-g5258